* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS değişkenleri index.php'de dinamik olarak yüklenir */

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    padding-top: 80px; /* Header yüksekliği kadar */
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header */
.header {
    background: var(--primary) !important;
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.2rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
}

.logo i {
    color: var(--accent);
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent);
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%),
                url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1920&q=80') center/cover;
    color: white;
    padding: 140px 0 120px;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: #c9a332;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
}

.btn-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-link:hover {
    color: var(--accent);
    gap: 12px;
}

.btn-link i {
    transition: transform 0.3s;
}

.btn-link:hover i {
    transform: translateX(4px);
}

/* Sections */
.section {
    padding: 100px 0;
}

.bg-light {
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 800;
    position: relative;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary), #3b82f6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, var(--accent), var(--accent));
}

.service-card h3 {
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
    font-size: 1.1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Lawyers */
.lawyers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.lawyer-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.lawyer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.lawyer-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
    width: 100%;
}

.lawyer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lawyer-card:hover img {
    transform: scale(1.1);
}

.lawyer-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(30, 58, 138, 0.9), transparent);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.lawyer-card:hover .lawyer-overlay {
    transform: translateY(0);
}

.lawyer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.lawyer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.lawyer-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.lawyer-info {
    padding: 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.lawyer-card h3 {
    margin: 0 0 0.4rem;
    color: var(--primary-dark);
    font-size: 1.15rem;
    font-weight: 700;
}

.lawyer-title {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 180px;
    border-radius: 12px 12px 0 0;
}

.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover img {
    transform: scale(1.1) rotate(2deg);
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 12px;
}

.blog-category {
    background: var(--accent);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 0.6rem;
    flex-wrap: wrap;
}

.blog-date,
.blog-read-time {
    color: var(--text-light);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-date i,
.blog-read-time i {
    color: var(--accent);
    font-size: 0.75rem;
}

.blog-card h3 {
    margin: 0 0 0.6rem;
    color: var(--primary-dark);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s;
}

.blog-card:hover h3 {
    color: var(--primary);
}

.blog-card p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0.8rem;
    flex: 1;
    font-size: 0.85rem;
}

.blog-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.btn-card-small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--primary), #3b82f6);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.btn-card-small:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent));
    color: var(--primary-dark);
    transform: translateX(3px);
}

.btn-card-small i {
    transition: transform 0.3s;
}

.btn-card-small:hover i {
    transform: translateX(3px);
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-item i {
    font-size: 2rem;
    color: var(--accent);
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-item p {
    color: var(--text-light);
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 4rem 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--accent);
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-section a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-5px);
    padding-left: 0;
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
    word-break: break-word;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-section {
        padding: 40px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .lawyers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.lawyer-card,
.blog-card {
    animation: fadeIn 0.6s ease-out;
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Smooth scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--primary-dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.show {
    display: flex;
}

.scroll-to-top:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}


/* Hero Slider */
.hero-slider {
    position: relative;
    height: calc(100vh - 220px);
    min-height: 400px;
    max-height: 550px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    animation: slideUp 1s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 6px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-content h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.slide-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.slide-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--accent);
    width: 40px;
    border-radius: 6px;
}

/* Modern Card Design */
.modern-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.modern-card:hover::before {
    transform: scaleX(1);
}

.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.card-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    font-weight: 900;
    color: rgba(30, 58, 138, 0.05);
    line-height: 1;
}

/* Service Card Enhancements */
.service-icon-wrapper {
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.service-features li {
    padding: 0.6rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s;
    font-size: 0.85rem;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li:hover {
    color: var(--primary);
    padding-left: 8px;
}

.service-features i {
    color: var(--accent);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.btn-card {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary), #3b82f6);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    margin-top: 0.8rem;
}

.btn-card:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent));
    color: var(--primary-dark);
    transform: translateX(5px);
}

.btn-card i {
    transition: transform 0.3s;
    font-size: 0.85rem;
}

.btn-card:hover i {
    transform: translateX(5px);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(212, 175, 55, 0.1));
    color: var(--primary);
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Lawyer Card Enhancements */
.lawyer-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lawyer-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.lawyer-stats .stat-item {
    text-align: center;
    color: white;
}

.lawyer-stats .stat-item i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.lawyer-stats .stat-item span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.lawyer-stats .stat-item small {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Responsive Slider */
@media (max-width: 768px) {
    .hero-slider {
        height: 60vh;
        min-height: 350px;
        max-height: 400px;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 0.95rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-btn.prev {
        left: 10px;
    }
    
    .slider-btn.next {
        right: 10px;
    }
    
    .slide-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .slide-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}


/* Popup Modal */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.popup-overlay.show {
    display: flex;
}

.popup-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
    transition: all 0.3s;
    z-index: 10;
}

.popup-close:hover {
    background: var(--primary);
    color: white;
    transform: rotate(90deg);
}

.popup-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-body {
    padding: 2.5rem;
    text-align: center;
}

.popup-body h2 {
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.popup-body p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.popup-btn {
    display: inline-block;
    margin-top: 1rem;
}

/* Responsive Popup */
@media (max-width: 768px) {
    .popup-content {
        max-width: 95%;
        margin: 20px;
    }
    
    .popup-body {
        padding: 2rem 1.5rem;
    }
    
    .popup-body h2 {
        font-size: 1.5rem;
    }
    
    .popup-image {
        height: 200px;
    }
}


/* ============================================
   HABERLER BÖLÜMÜ - FEATURED SLIDER
   ============================================ */

.news-featured-section {
    padding: 0.8rem 0;
    background: var(--bg-light);
    margin-top: 0;
}

.news-featured-wrapper {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.news-featured-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.2rem;
    background: var(--primary);
    color: white;
}

.news-featured-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
}

.news-featured-title i {
    color: var(--accent);
}

.news-featured-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.news-nav-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(255,255,255,0.15);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-nav-btn:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

.news-counter {
    font-size: 0.85rem;
    opacity: 0.8;
    min-width: 50px;
    text-align: center;
}

.news-featured-slider {
    position: relative;
    min-height: 140px;
}

.news-featured-item {
    display: none;
    padding: 0.8rem 1.2rem;
}

.news-featured-item.active {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1rem;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

.news-featured-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 120px;
}

.news-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.news-featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-featured-meta {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 0.6rem;
}

.news-featured-meta span {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-featured-meta i {
    color: var(--accent);
    font-size: 0.75rem;
}

.news-featured-content h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin: 0 0 0.4rem;
    line-height: 1.4;
}

.news-featured-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0 0 0.8rem;
}

.news-featured-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-news-read {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-news-read:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

.btn-news-source {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    background: transparent;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.8rem;
    border: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.btn-news-source:hover {
    border-color: var(--primary);
    color: var(--primary);
}

@media (max-width: 768px) {
    .news-featured-item.active {
        grid-template-columns: 1fr;
    }
    
    .news-featured-image {
        height: 160px;
    }
    
    .news-featured-content h3 {
        font-size: 1.1rem;
    }
}

/* Haber Detay Sayfası */
.news-detail-section {
    padding: 3rem 0;
}

.news-detail-header {
    margin-bottom: 2rem;
}

.news-detail-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.news-detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.news-detail-meta i {
    color: var(--accent);
}

.news-detail-title {
    font-size: 2rem;
    color: var(--primary-dark);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.news-detail-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.news-detail-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
}

.news-detail-content p {
    margin-bottom: 1.5rem;
}

.news-source-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.news-source-box span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.news-source-box a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.news-source-box a:hover {
    color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-detail-title {
        font-size: 1.5rem;
    }
    
    .news-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* ============================================
   INSTAGRAM FEED BÖLÜMÜ
   ============================================ */

.instagram-section {
    padding: 3rem 0;
    background: var(--bg-light);
}

.instagram-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.instagram-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-dark);
    font-size: 1.3rem;
    font-weight: 700;
}

.instagram-title i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.instagram-follow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.instagram-follow:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(131, 58, 180, 0.3);
}

/* Admin paneldeki gibi grid görünümü */
.instagram-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.instagram-post-card {
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.instagram-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.instagram-post-embed {
    max-height: 500px;
    overflow: hidden;
    border-radius: 8px;
}

/* Instagram embed stilleri */
.instagram-post-embed iframe {
    border: none !important;
    box-shadow: none !important;
    margin: 0 auto !important;
    display: block !important;
}

.instagram-post-embed blockquote.instagram-media {
    margin: 0 auto !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background: white !important;
    max-width: 100% !important;
    min-width: auto !important;
}

@media (max-width: 768px) {
    .instagram-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .instagram-post-card {
        padding: 10px;
    }
    
    .instagram-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}


/* ============================================
   SORU-CEVAP BÖLÜMÜ
   ============================================ */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    margin-bottom: 0;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-hero h1 i {
    color: var(--accent);
    margin-right: 15px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* QA Layout */
.qa-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
    align-items: start;
}

/* QA Sidebar */
.qa-sidebar {
    position: sticky;
    top: 100px;
}

.qa-form-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.qa-form-card h3 {
    color: var(--primary-dark);
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-light);
}

.qa-form-card h3 i {
    color: var(--accent);
    margin-right: 10px;
}

.qa-form .form-group {
    margin-bottom: 15px;
}

.qa-form label {
    display: block;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.qa-form label i {
    color: var(--accent);
    margin-right: 6px;
    width: 16px;
}

.qa-form input,
.qa-form select,
.qa-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.qa-form input:focus,
.qa-form select:focus,
.qa-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.qa-form small {
    display: block;
    color: var(--text-light);
    font-size: 0.8rem;
    margin-top: 5px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Alert Messages */
.alert {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* QA Categories */
.qa-categories {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.qa-categories h4 {
    color: var(--primary-dark);
    font-size: 1rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-light);
}

.qa-categories h4 i {
    color: var(--accent);
    margin-right: 8px;
}

.qa-categories a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    color: var(--text);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    margin-bottom: 5px;
}

.qa-categories a:hover,
.qa-categories a.active {
    background: var(--primary);
    color: white;
}

.qa-categories a .count {
    background: rgba(0,0,0,0.1);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.qa-categories a.active .count,
.qa-categories a:hover .count {
    background: rgba(255,255,255,0.2);
}

/* QA Content */
.qa-content {
    min-height: 500px;
}

/* QA Search */
.qa-search {
    margin-bottom: 25px;
}

.search-form {
    display: flex;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.search-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    font-size: 1rem;
    font-family: inherit;
}

.search-form input:focus {
    outline: none;
}

.search-form button {
    padding: 15px 25px;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.search-form button:hover {
    background: var(--primary-dark);
}

/* QA Empty State */
.qa-empty {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.qa-empty i {
    font-size: 4rem;
    color: #e5e7eb;
    margin-bottom: 20px;
}

.qa-empty h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.qa-empty p {
    color: var(--text-light);
}

/* QA List */
.qa-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* QA Item */
.qa-item {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.qa-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

.qa-item.featured {
    border: 2px solid var(--accent);
}

.qa-item.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
}

.qa-featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* QA Question */
.qa-question {
    display: flex;
    gap: 15px;
}

.qa-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.qa-question-content {
    flex: 1;
}

.qa-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.qa-author {
    font-weight: 600;
    color: var(--primary-dark);
}

.qa-date {
    color: var(--text-light);
}

.qa-date i {
    margin-right: 4px;
}

.qa-category {
    background: #e0e7ff;
    color: #3730a3;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.qa-question-text {
    font-size: 1.1rem;
    color: var(--primary-dark);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.qa-question-text i {
    color: var(--accent);
    margin-right: 8px;
    font-size: 0.9rem;
}

/* QA Answer */
.qa-answer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--bg-light);
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    margin: 20px -25px -25px;
    padding: 25px;
    border-radius: 0 0 14px 14px;
}

.qa-answer-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.qa-lawyer-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.qa-lawyer-name {
    display: block;
    font-weight: 700;
    color: #065f46;
}

.qa-answer-date {
    font-size: 0.8rem;
    color: #6b7280;
}

.qa-answer-text {
    color: var(--text);
    line-height: 1.8;
    font-size: 1rem;
}

/* QA Section on Homepage */
.qa-preview-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.qa-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.qa-preview-item {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.qa-preview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

.qa-preview-question {
    font-size: 1.05rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.5;
}

.qa-preview-question i {
    color: var(--accent);
    margin-right: 8px;
}

.qa-preview-answer {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.qa-preview-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
    font-size: 0.85rem;
}

.qa-preview-lawyer {
    color: #10b981;
    font-weight: 600;
}

.qa-preview-category {
    background: #e0e7ff;
    color: #3730a3;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .qa-layout {
        grid-template-columns: 1fr;
    }
    
    .qa-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0 40px;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .qa-sidebar {
        grid-template-columns: 1fr;
    }
    
    .qa-item {
        padding: 20px;
    }
    
    .qa-question {
        flex-direction: column;
    }
    
    .qa-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .qa-answer {
        margin: 15px -20px -20px;
        padding: 20px;
    }
    
    .qa-preview-grid {
        grid-template-columns: 1fr;
    }
}


/* QA Preview Item - Tıklanabilir */
a.qa-preview-item {
    text-decoration: none;
    color: inherit;
    display: block;
}

a.qa-preview-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.qa-preview-readmore {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

a.qa-preview-item:hover .qa-preview-readmore {
    color: var(--accent);
    gap: 12px;
}

.qa-preview-readmore i {
    transition: transform 0.3s;
}

a.qa-preview-item:hover .qa-preview-readmore i {
    transform: translateX(5px);
}

/* Highlighted Question */
.qa-item.highlighted {
    border: 2px solid var(--primary);
    box-shadow: 0 10px 40px rgba(30, 58, 138, 0.2);
    animation: highlightPulse 2s ease-in-out;
}

@keyframes highlightPulse {
    0% { box-shadow: 0 0 0 0 rgba(30, 58, 138, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(30, 58, 138, 0); }
    100% { box-shadow: 0 10px 40px rgba(30, 58, 138, 0.2); }
}


/* QA Quick Ask Box */
.qa-quick-ask {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 25px 35px;
    border-radius: 16px;
    margin-bottom: 30px;
    color: white;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
}

.qa-quick-ask-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.qa-quick-ask-icon i {
    font-size: 1.8rem;
    color: var(--accent);
}

.qa-quick-ask-content {
    flex: 1;
}

.qa-quick-ask-content h3 {
    font-size: 1.3rem;
    margin: 0 0 5px;
    font-weight: 700;
}

.qa-quick-ask-content p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

.qa-quick-ask .btn {
    flex-shrink: 0;
    background: var(--accent);
    color: var(--primary-dark);
}

.qa-quick-ask .btn:hover {
    background: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .qa-quick-ask {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .qa-quick-ask .btn {
        width: 100%;
    }
}


/* ============================================
   BLOG SAYFASI - KOMPAKT TASARIM
   ============================================ */

/* Kompakt Hero */
.page-hero-compact {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 25px 0;
}

.page-hero-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-hero-left h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-hero-left h1 i {
    color: var(--accent);
}

.page-hero-left p {
    margin: 5px 0 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

.page-hero-right {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.page-hero-right span {
    opacity: 0.6;
}

.breadcrumb-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-link:hover {
    color: var(--accent);
}

/* Filter Bar */
.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-left {
    flex: 1;
    min-width: 250px;
}

.filter-search {
    display: flex;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    max-width: 400px;
}

.filter-search input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    font-size: 0.95rem;
    font-family: inherit;
}

.filter-search input:focus {
    outline: none;
}

.filter-search button {
    padding: 12px 18px;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.filter-search button:hover {
    background: var(--primary-dark);
}

.filter-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.filter-sort {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.filter-sort label {
    color: var(--text-light);
}

.filter-sort select {
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text);
    cursor: pointer;
    padding: 5px;
}

.filter-sort select:focus {
    outline: none;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.category-tab {
    padding: 8px 18px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 25px;
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    white-space: nowrap;
}

.category-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.category-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Active Filters */
.active-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.active-filters > span {
    color: var(--text-light);
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #e0e7ff;
    color: #3730a3;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.filter-tag:hover {
    background: #c7d2fe;
}

.filter-tag i {
    font-size: 0.75rem;
}

.clear-all {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-left: 10px;
}

.clear-all:hover {
    text-decoration: underline;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.empty-state i {
    font-size: 4rem;
    color: #e5e7eb;
    margin-bottom: 20px;
}

.empty-state h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Pagination */
.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 40px;
}

.pagination a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    transition: all 0.3s;
}

.pagination a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.pagination a.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero-row {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .page-hero-left h1 {
        font-size: 1.3rem;
        justify-content: center;
    }
    
    .filter-bar {
        flex-direction: column;
    }
    
    .filter-left {
        width: 100%;
    }
    
    .filter-search {
        max-width: 100%;
    }
    
    .category-tabs {
        justify-content: center;
    }
    
    .category-tab {
        padding: 6px 14px;
        font-size: 0.85rem;
    }
}


/* Instagram in Contact Section */
.instagram-in-contact {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 2px solid rgba(0,0,0,0.08);
}

.instagram-in-contact .instagram-header {
    margin-bottom: 25px;
}

.instagram-in-contact .instagram-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

@media (max-width: 768px) {
    .instagram-in-contact {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
    
    .instagram-in-contact .instagram-posts-grid {
        grid-template-columns: 1fr;
    }
}
