body {
    font-family: 'Inter', 'Poppins', Arial, sans-serif;
    background: #f6f8fa;
    color: #23272f;
    margin: 0;
    padding: 0;
}
.container, section.container {
    max-width: 1200px;
    margin: 40px auto;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(44,108,176,0.08);
    padding: 40px 32px;
}
header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 0;
    margin-bottom: 32px;
}
header .container {
    background: none;
    box-shadow: none;
    padding: 0 40px;
    max-width: 1200px;
}
nav {
    min-height: 70px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
}
nav a {
    text-decoration: none;
    color: #2d3748;
    font-weight: 500;
    font-size: 1.08rem;
    transition: color 0.2s;
}
nav a:hover {
    color: #2b6cb0;
}
main .container {
    margin-bottom: 32px;
}
h1 {
    color: #2b6cb0;
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 18px;
    text-align: center;
    letter-spacing: -1px;
}
h2 {
    color: #2b6cb0;
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 14px;
    text-align: center;
}
h3 {
    color: #234e8c;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}
p {
    color: #4a5568;
    font-size: 1.08rem;
    margin-bottom: 24px;
    text-align: center;
}
.examples {
    display: flex;
    flex-direction: row;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.card, .service-card, .testimonial-card, .faq-item, .step {
    background: #f7fafc;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(44,108,176,0.06);
    padding: 28px 20px;
    margin: 0 auto 18px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .service-card:hover, .testimonial-card:hover, .faq-item:hover, .step:hover {
    box-shadow: 0 8px 32px rgba(44,108,176,0.13);
    transform: translateY(-2px) scale(1.03);
}
.card img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background: #e2e8f0;
    object-fit: cover;
}
.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 6px;
    text-align: center;
}
.card-desc {
    color: #4a5568;
    font-size: 1.05rem;
    text-align: center;
}
.grid-4, .services-grid, .process-steps, .testimonials-grid, .faq-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    justify-content: center;
    margin: 0 auto;
}
.btn, .cta-btn, .service-link, .register-btn-alt, .login-btn-alt, .sifre-unut-btn {
    background: linear-gradient(90deg, #2b6cb0 60%, #48bb78 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 0;
    font-size: 1.13rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(44,108,176,0.10);
    transition: background 0.18s, transform 0.18s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn:hover, .cta-btn:hover, .service-link:hover, .register-btn-alt:hover, .login-btn-alt:hover, .sifre-unut-btn:hover {
    background: linear-gradient(90deg, #48bb78 60%, #2b6cb0 100%);
    transform: translateY(-2px) scale(1.03);
}
@media (max-width: 900px) {
    .grid-4, .services-grid, .process-steps, .testimonials-grid, .faq-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .container, header .container, section.container {
        max-width: 98vw;
        padding: 24px 4vw;
        margin: 24px auto;
        border-radius: 14px;
    }
    body, html {
        overflow-x: hidden;
    }
    .hero-content {
        flex-direction: column;
        gap: 18px;
        align-items: center;
        text-align: center;
    }
    .hero-text {
        min-width: 0;
        width: 100%;
        padding: 0;
    }
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    .hero-text p {
        font-size: 1.05rem;
        margin-bottom: 18px;
    }
    .cta-btn {
        width: 100%;
        font-size: 1.05rem;
        padding: 14px 0;
        margin-bottom: 10px;
    }
    .hero-image {
        min-width: 0;
        width: 100%;
        justify-content: center;
    }
    .hero-image img {
        width: 90vw;
        min-width: 120px;
        max-width: 100%;
        margin: 0 auto;
    }
    .services-grid, .testimonials-grid, .process-steps, .faq-list {
        flex-direction: column;
        gap: 18px;
        align-items: stretch;
    }
    .service-card, .testimonial-card, .step, .faq-item {
        min-width: 0;
        max-width: 100%;
        width: 100%;
        padding: 18px 10px;
        font-size: 1rem;
    }
    .service-card h3, .testimonial-card h3 {
        font-size: 1.08rem;
    }
    .service-card p, .testimonial-content p, .step p, .faq-answer {
        font-size: 0.98rem;
    }
    .service-link, .cta-btn {
        font-size: 1rem;
        padding: 12px 0;
        width: 100%;
        box-sizing: border-box;
    }
    .faq-question {
        font-size: 1.05rem;
        padding: 10px 0;
    }
    .faq-item {
        margin-bottom: 10px;
    }
    .process-section, .testimonials-section, .faq-section {
        padding: 18px 0;
        margin: 18px 0;
        border-radius: 0;
        box-shadow: none;
    }
    .examples {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    .card {
        width: 100%;
        min-width: 0;
    }
    nav ul {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(44,62,80,0.97);
        flex-direction: column;
        gap: 0;
        box-shadow: none;
        z-index: 9999;
        justify-content: center;
        align-items: center;
        transition: opacity 0.3s;
        opacity: 0;
        pointer-events: none;
    }
    nav ul.active {
        display: flex;
        opacity: 1;
        pointer-events: auto;
    }
    nav ul li {
        width: 80vw;
        margin: 0 0 18px 0;
        text-align: center;
    }
    nav ul li:last-child {
        margin-bottom: 0;
    }
    nav ul a {
        display: block;
        background: #fff;
        color: #2b6cb0 !important;
        font-size: 1.25rem;
        font-weight: 700;
        border-radius: 10px;
        padding: 18px 0;
        margin: 0 auto;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        transition: background 0.2s, color 0.2s;
    }
    nav ul a:hover {
        background: #2b6cb0;
        color: #fff !important;
    }
    .hamburger {
        display: flex;
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
    }
    nav {
        position: relative;
    }
    .slider-item, .banner > div {
        min-height: 180px;
        padding-left: 0 !important;
        padding-right: 0 !important;
        justify-content: center !important;
        text-align: center !important;
    }
    .slider-item > div {
        margin: 0 auto;
        padding: 12px 4vw !important;
        max-width: 98vw;
    }
    .slider-arrow {
        top: unset !important;
        bottom: 16px !important;
        left: 20% !important;
        right: 20% !important;
        transform: none !important;
    }
    .slider-arrow-left {
        left: 10vw !important;
    }
    .slider-arrow-right {
        right: 10vw !important;
    }
    .slider-dots {
        bottom: 4px !important;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.3rem;
    }
    img[alt="Referans"] {
        height: 28px !important;
    }
}
@media (max-width: 600px) {
    .grid-4, .services-grid, .process-steps, .testimonials-grid, .faq-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .container, header .container, section.container {
        max-width: 100vw;
        padding: 14px 4vw;
        margin: 10px auto;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(44,108,176,0.06);
    }
    body, html {
        overflow-x: hidden;
    }
    .hero-text h1 {
        font-size: 1.5rem;
    }
    .hero-image img {
        width: 98vw;
        min-width: 80px;
    }
    .service-card, .testimonial-card, .step, .faq-item {
        padding: 12px 4vw;
        border-radius: 8px;
    }
    .cta-btn, .service-link {
        font-size: 0.98rem;
        padding: 10px 0;
    }
    .slider-item, .banner > div {
        min-height: 110px;
    }
    .slider-item > div {
        padding: 8px 2vw !important;
    }
    .card {
        padding: 16px 8px;
    }
    .footer {
        font-size: 0.95rem;
        padding: 12px 0 6px 0;
    }
    nav ul {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    .slider-arrow {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.9rem !important;
    }
}
/* Mobil hamburger menü için temel stiller */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 10001;
}
.hamburger span {
    height: 4px;
    width: 100%;
    background: #2b6cb0;
    margin: 4px 0;
    border-radius: 2px;
    display: block;
    transition: 0.3s;
}
@media (max-width: 900px) {
    .hamburger {
        display: flex;
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
    }
    #main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(44,62,80,0.97);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }
    #main-nav.active {
        display: flex;
    }
    #main-nav li {
        width: 80vw;
        margin: 0 0 18px 0;
        text-align: center;
    }
    #main-nav li:last-child {
        margin-bottom: 0;
    }
    #main-nav a {
        display: block;
        background: #fff;
        color: #2b6cb0 !important;
        font-size: 1.25rem;
        font-weight: 700;
        border-radius: 10px;
        padding: 18px 0;
        margin: 0 auto;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        transition: background 0.2s, color 0.2s;
    }
    #main-nav a:hover {
        background: #2b6cb0;
        color: #fff !important;
    }
}
/* PANEL ÖZEL STİLLERİ */
.panel-main {
    margin-left: 220px;
    padding: 48px 32px 0 32px;
    min-height: 100vh;
    background: #f8fafc;
}
@media (max-width: 900px) {
    .panel-main {
        margin-left: 0;
        padding: 24px 4vw 0 4vw;
    }
    aside {
        display: none;
    }
}
.panel-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(44,108,176,0.08);
    padding: 32px 24px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    min-width: 220px;
    flex: 1;
}
.panel-card i {
    color: #2b6cb0;
    margin-bottom: 10px;
    font-size: 2rem;
}
.panel-card-title {
    font-weight: 700;
    font-size: 1.15rem;
    color: #2b6cb0;
}
.panel-card-desc {
    color: #4a5568;
    font-size: 1.05rem;
}
.panel-cards-row {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
@media (max-width: 900px) {
    .panel-cards-row {
        flex-direction: column;
        gap: 18px;
    }
}
.hero-accessible {
    background: linear-gradient(120deg, #667eea 0%, #f6ad55 100%);
    padding: 80px 0 60px 0;
    min-height: 420px;
    display: flex;
    align-items: center;
}
.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.hero-text {
    flex: 1 1 350px;
    min-width: 320px;
}
.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 18px;
    color: #2b6cb0;
    line-height: 1.15;
}
.hero-text .highlight {
    color: #f6ad55;
    background: #fff;
    padding: 0 10px;
    border-radius: 10px;
}
.hero-text p {
    font-size: 1.25rem;
    color: #f7fafc;
    margin-bottom: 32px;
}
.cta-btn {
    background: #f6ad55;
    color: #222;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    display: inline-block;
}
.cta-btn:hover {
    background: #ffb366;
    color: #222;
    transform: translateY(-2px) scale(1.04);
}
.hero-image {
    flex: 1 1 320px;
    min-width: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-image img {
    width: 320px;
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(44,108,176,0.10);
    background: #fff;
}
.services-section h2, .process-section h2, .testimonials-section h2, .faq-section h2 {
    text-align: center;
    color: #2b6cb0;
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 32px;
}
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}
.service-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(44,108,176,0.08);
    padding: 36px 24px;
    text-align: center;
    min-width: 220px;
    max-width: 320px;
    margin-bottom: 18px;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.service-card img {
    width: 72px;
    height: 72px;
    margin-bottom: 12px;
}
.service-card h3 {
    font-size: 1.18rem;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 6px;
}
.service-card p {
    color: #4a5568;
    font-size: 1.05rem;
    margin-bottom: 8px;
}
.service-link {
    color: #f6ad55;
    font-weight: 600;
    text-decoration: underline;
    margin-top: 10px;
    display: inline-block;
    transition: color 0.2s;
}
.service-link:hover {
    color: #ffb366;
}
.process-section {
    background: #fff;
    padding: 48px 0;
    margin: 48px 0;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(44,108,176,0.06);
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin: 32px 0;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}
.step {
    background: #f7fafc;
    border-radius: 12px;
    padding: 32px 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    text-align: center;
    min-width: 180px;
    max-width: 220px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.step-icon {
    font-size: 2.2rem;
    color: #f6ad55;
    margin-bottom: 10px;
    display: inline-block;
}
.step h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 6px;
}
.step p {
    color: #4a5568;
    font-size: 1.01rem;
}
.testimonials-section {
    margin: 56px auto;
    padding: 0 0 32px 0;
    max-width: 900px;
    text-align: center;
}
.testimonials-section h2 {
    text-align: center;
    margin-bottom: 32px;
    font-size: 2.1rem;
    font-weight: 800;
    color: #2b6cb0;
}
.testimonials-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin: 0 auto;
    max-width: 900px;
}
.testimonial-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(44,108,176,0.08);
    padding: 32px 24px;
    min-width: 260px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}
.testimonial-card img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin-bottom: 10px;
}
.testimonial-content p {
    color: #4a5568;
    font-size: 1.08rem;
    margin-bottom: 8px;
}
.testimonial-author {
    color: #2b6cb0;
    font-weight: 700;
    font-size: 1.01rem;
}
.testimonial-author span {
    color: #a0aec0;
    font-size: 0.95rem;
    font-weight: 400;
    margin-left: 6px;
}
.faq-section {
    margin: 56px auto;
    padding: 0 0 32px 0;
    max-width: 900px;
    text-align: center;
}
.faq-section h2 {
    text-align: center;
    margin-bottom: 32px;
    font-size: 2.1rem;
    font-weight: 800;
    color: #2b6cb0;
}
.faq-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin: 0 auto;
    max-width: 900px;
}
.faq-item {
    background: #f1f5f9;
    padding: 18px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    font-size: 1.08rem;
    color: #2d3748;
    margin-bottom: 14px;
}
.faq-question {
    background: none;
    border: none;
    color: #2b6cb0;
    font-weight: 700;
    font-size: 1.08rem;
    cursor: pointer;
    width: 100%;
    text-align: left;
    outline: none;
    padding: 0;
    margin-bottom: 6px;
    transition: color 0.2s;
}
.faq-question[aria-expanded="true"] {
    color: #f6ad55;
}
.faq-answer {
    display: none;
    color: #4a5568;
    font-size: 1.01rem;
    margin-top: 6px;
}
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        gap: 24px;
    }
    .services-grid, .testimonials-grid, .process-steps {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    .hero-image img {
        width: 90vw;
        min-width: 180px;
    }
    .faq-section, .testimonials-section {
        margin: 24px auto;
        padding: 0 0 16px 0;
        max-width: 100vw;
    }
    .faq-section h2, .testimonials-section h2 {
        font-size: 1.3rem;
        margin-bottom: 18px;
    }
    .faq-list, .testimonials-grid {
        flex-direction: column;
        gap: 18px;
        align-items: center;
        max-width: 100vw;
    }
    .process-steps {
        grid-template-columns: 1fr;
        gap: 18px;
        margin: 18px 0;
        justify-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
    .step {
        max-width: 340px;
        width: 100%;
        margin: 0 auto;
    }
}
/* GİRİŞ & KAYIT */
.login-container, .register-container {
    margin-top: 40px;
    max-width: 400px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(44,108,176,0.07);
    padding: 36px 28px;
}
.login-title, .register-title {
    text-align: center;
    color: #2b6cb0;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 18px;
}
.login-form, .register-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.login-form input, .register-form input, .register-form textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    font-size: 1.08rem;
}
.login-form button, .register-form button {
    background: #2b6cb0;
    color: #fff;
    padding: 12px 0;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.login-form button:hover, .register-form button:hover {
    background: #234e8c;
}
.login-bottom-link, .register-bottom-link {
    text-align: center;
    margin-top: 18px;
    color: #4a5568;
}
.login-bottom-link a, .register-bottom-link a {
    color: #2b6cb0;
    font-weight: 600;
    text-decoration: underline;
}
.register-hizmetler {
    margin-bottom: 8px;
}
.register-hizmetler-title {
    font-weight: 600;
    color: #2b6cb0;
    margin-bottom: 6px;
}
.register-hizmetler label {
    display: block;
    margin-bottom: 4px;
}
/* HAKKIMIZDA */
.about-container {
    margin-top: 40px;
    max-width: 900px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 48px 40px;
}
.about-title {
    color: #2b6cb0;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 18px;
    text-align: center;
}
.about-desc {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 24px;
    text-align: center;
}
.about-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    justify-content: center;
    margin-bottom: 32px;
}
.about-img-box {
    flex: 1 1 320px;
    min-width: 280px;
    max-width: 480px;
}
.about-img-box img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.about-info-box {
    flex: 2 1 400px;
    min-width: 280px;
    max-width: 600px;
    padding: 0;
}
.about-info-box h2, .about-info-box p {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}
.about-info-box h2 {
    color: #2b6cb0;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.about-info-box p {
    color: #4a5568;
    font-size: 1.05rem;
    margin-bottom: 16px;
    text-align: left;
}
.about-stats-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 32px;
}
.about-stat {
    flex: 1 1 180px;
    min-width: 160px;
    background: #f1f5f9;
    border-radius: 10px;
    padding: 18px 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.about-stat i {
    font-size: 1.7rem;
    color: #2b6cb0;
    margin-bottom: 8px;
}
.about-stat-title {
    font-weight: 700;
    margin-bottom: 4px;
}
.about-stat-desc {
    color: #4a5568;
    font-size: 0.98rem;
}
.about-contact-link {
    text-align: center;
    margin-top: 32px;
}
.about-contact-link a {
    background: #2b6cb0;
    color: #fff;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 8px;
    font-size: 1.15rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s;
}
.about-contact-link a:hover {
    background: #234e8c;
}
/* HİZMETLER */
.header {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}
.header h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
.header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}
.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}
.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.service-features {
    list-style: none;
    margin-bottom: 2rem;
}
.service-features li {
    padding: 0.5rem 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.service-features li i {
    color: #48bb78;
    width: 16px;
}
.service-price {
    font-size: 2rem;
    font-weight: 900;
    color: #667eea;
    margin-bottom: 1rem;
    text-align: center;
}
.service-price .currency {
    font-size: 1rem;
    color: #666;
}
.service-buttons, .service-btn-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.service-button, .cta-btn {
    flex: 1;
    min-width: 120px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}
.service-button.primary, .cta-btn.cta-btn-blue {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}
.service-button.primary:hover, .cta-btn.cta-btn-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102,126,234,0.4);
}
.service-button.secondary, .cta-btn.cta-btn-green {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
}
.service-button.secondary:hover, .cta-btn.cta-btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72,187,120,0.4);
}
.service-button.outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}
.service-button.outline:hover {
    background: #667eea;
    color: white;
}
.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.badge.owned {
    background: linear-gradient(135deg, #667eea, #764ba2);
}
.badge.popular {
    background: linear-gradient(135deg, #ed8936, #dd6b20);
}
.cta-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}
.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 1rem;
}
.cta-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-buttons, .hero-btn-row, .process-cta-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}
.cta-btn.cta-btn-orange {
    background: #f6ad55;
    color: #222;
}
.cta-btn.cta-btn-orange:hover {
    background: #ed8936;
    color: #fff;
}
/* İLETİŞİM */
.contact-container {
    margin-top: 48px;
    max-width: 700px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(44,108,176,0.08);
    padding: 48px 40px;
}
.contact-title {
    color: #2b6cb0;
    font-size: 2.2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 10px;
}
.contact-desc {
    color: #4a5568;
    font-size: 1.13rem;
    text-align: center;
    margin-bottom: 32px;
}
.contact-info-row {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.contact-info-box {
    background: #f1f5f9;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(44,108,176,0.08);
    padding: 18px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.13rem;
    color: #2b6cb0;
    font-weight: 700;
    transition: box-shadow 0.2s, transform 0.2s;
}
.contact-info-box i {
    font-size: 1.5rem;
}
.contact-info-box:hover {
    box-shadow: 0 4px 16px rgba(44,108,176,0.13);
    transform: translateY(-2px) scale(1.04);
}
.contact-form {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(44,108,176,0.08);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 480px;
    margin: 0 auto;
}
.contact-input-group {
    display: flex;
    align-items: center;
    background: #f7fafc;
    border-radius: 8px;
    border: 1.5px solid #e2e8f0;
    margin-bottom: 8px;
    padding: 0 10px;
    box-shadow: 0 1px 4px rgba(44,108,176,0.04);
}
.contact-input-icon {
    color: #2b6cb0;
    font-size: 1.1rem;
    margin-right: 8px;
}
.contact-input-group input,
.contact-input-group textarea {
    border: none;
    background: transparent;
    outline: none;
    font-size: 1rem;
    width: 100%;
    padding: 12px 0;
    font-family: inherit;
    resize: none;
}
.contact-input-group textarea {
    min-height: 80px;
}
.contact-form button {
    background: #2b6cb0;
    color: #fff;
    font-weight: 700;
    padding: 14px 0;
    border: none;
    border-radius: 8px;
    font-size: 1.13rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(44,108,176,0.10);
}
.contact-form button:hover {
    background: #234e8c;
    transform: translateY(-2px) scale(1.04);
}
@media (max-width: 900px) {
    .about-flex {
        flex-direction: column;
        gap: 18px;
        align-items: center;
        text-align: center;
    }
    .about-info-box {
        min-width: 0;
        width: 100%;
        padding: 0;
    }
    .about-img-box {
        min-width: 0;
        width: 100%;
        justify-content: center;
    }
    .about-img-box img {
        width: 90vw;
        min-width: 120px;
        max-width: 100%;
        margin: 0 auto;
    }
    .about-stats-row {
        flex-direction: column;
        gap: 14px;
        align-items: center;
    }
    .about-contact-link a {
        width: 100%;
        font-size: 1.05rem;
        padding: 14px 0;
        margin-bottom: 10px;
    }
    .contact-container {
        padding: 18px 6px;
    }
    .contact-info-row {
        flex-direction: column;
        gap: 14px;
        align-items: center;
    }
    .contact-form {
        padding: 18px 6px;
    }
    .login-container, .register-container {
        padding: 18px 6px;
    }
}
.mobile-btn-row, .mobile-only { display: none !important; }
@media (max-width: 900px) {
  #main-nav.active .mobile-btn-row { display: flex !important; gap: 12px; justify-content: center; margin-bottom: 8px; }
  #main-nav.active .mobile-btn-row .mobile-only { display: inline-block !important; min-width: 120px; padding: 12px 0; text-align: center; font-size: 1.08rem; }
  #main-nav.active .mobile-btn-row .btn, #main-nav.active .mobile-btn-row .btn-outline { min-width: 120px; padding: 12px 0; text-align: center; font-size: 1.08rem; }
  .desktop-only { display: none !important; }
}
.brand-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: #2b6cb0;
    letter-spacing: 0.5px;
    display: inline-block;
    line-height: 1.1;
    background: linear-gradient(90deg, #2b6cb0 60%, #48bb78 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.brand-title span {
    color: #f6ad55;
    font-weight: 900;
    letter-spacing: 1px;
    background: none;
    -webkit-text-fill-color: #f6ad55;
}
.brand-slogan {
    display: block;
    font-size: 0.92rem;
    color: #4a5568;
    font-weight: 500;
    margin-top: 2px;
    margin-left: 2px;
    letter-spacing: 0.2px;
    opacity: 0.85;
}
@media (max-width: 600px) {
    .brand-title {
        font-size: 1.08rem;
    }
    .brand-slogan {
        font-size: 0.82rem;
    }
}
.process-cta-row .cta-btn {
    min-width: 100px;
    max-width: 220px;
    width: auto;
    padding: 10px 20px;
    display: inline-block;
}
@media (max-width: 900px) {
  .process-cta-row .cta-btn {
    width: auto;
    min-width: 100px;
    max-width: 90vw;
    padding: 10px 16px;
    margin-bottom: 0;
  }
}
.services-section-alt {
    background: linear-gradient(120deg, #f7fafc 60%, #e6fffa 100%);
    padding: 64px 0 48px 0;
    margin: 0 0 48px 0;
}
.services-alt-header {
    text-align: center;
    margin-bottom: 36px;
}
.services-alt-header h2 {
    font-size: 2.3rem;
    font-weight: 900;
    color: #2b6cb0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.services-alt-header h2 i {
    color: #48bb78;
    font-size: 2.1rem;
}
.services-alt-header p {
    color: #4a5568;
    font-size: 1.13rem;
    max-width: 540px;
    margin: 0 auto;
}
.services-alt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}
.service-alt-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 6px 32px rgba(44,108,176,0.10);
    padding: 36px 24px 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.22s, transform 0.22s;
    position: relative;
    overflow: hidden;
    border: 1.5px solid #e2e8f0;
}
.service-alt-card:hover {
    box-shadow: 0 16px 48px rgba(44,108,176,0.18);
    transform: translateY(-6px) scale(1.03);
    border-color: #b2f5ea;
}
.service-alt-icon {
    width: 74px;
    height: 74px;
    background: linear-gradient(135deg, #2b6cb0 60%, #48bb78 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 18px;
    box-shadow: 0 2px 12px rgba(44,108,176,0.10);
}
.service-alt-content h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #2b6cb0;
    margin-bottom: 8px;
    text-align: center;
}
.service-alt-content p {
    color: #4a5568;
    font-size: 1.05rem;
    margin-bottom: 18px;
    text-align: center;
    min-height: 48px;
}
.service-alt-btn-row {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.service-alt-btn-row .service-link,
.service-alt-btn-row .cta-btn {
    min-width: 120px;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    display: inline-block;
    box-sizing: border-box;
    background: #2b6cb0;
    color: #fff;
    border: 2px solid #2b6cb0;
    text-decoration: none;
    transition: background 0.18s, color 0.18s, border 0.18s;
}
.service-alt-btn-row .service-link:hover,
.service-alt-btn-row .cta-btn:hover {
    background: #fff;
    color: #2b6cb0;
    border: 2px solid #2b6cb0;
}
@media (max-width: 900px) {
    .services-section-alt {
        padding: 32px 0 24px 0;
    }
    .services-alt-header h2 {
        font-size: 1.4rem;
    }
    .services-alt-grid {
        gap: 18px;
    }
    .service-alt-card {
        padding: 18px 8px 16px 8px;
    }
    .service-alt-icon {
        width: 54px;
        height: 54px;
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    .service-alt-content h3 {
        font-size: 1.08rem;
    }
    .service-alt-content p {
        font-size: 0.98rem;
        min-height: 32px;
    }
}
.faq-section-alt {
    background: #f7fafc;
    padding: 56px 0 40px 0;
    margin: 0 0 48px 0;
}
.faq-alt-header {
    text-align: center;
    margin-bottom: 36px;
}
.faq-alt-header h2 {
    font-size: 2.1rem;
    font-weight: 900;
    color: #2b6cb0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.faq-alt-header h2 i {
    color: #f6ad55;
    font-size: 2rem;
}
.faq-alt-header p {
    color: #4a5568;
    font-size: 1.08rem;
    max-width: 540px;
    margin: 0 auto;
}
.faq-alt-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.faq-alt-item {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(44,108,176,0.10);
    padding: 0;
    overflow: hidden;
    border: 1.5px solid #e2e8f0;
    transition: box-shadow 0.18s, border 0.18s;
}
.faq-alt-item:hover {
    box-shadow: 0 8px 32px rgba(44,108,176,0.13);
    border-color: #b2f5ea;
}
.faq-alt-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 1.13rem;
    font-weight: 700;
    color: #2b6cb0;
    padding: 22px 28px 18px 28px;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.18s;
}
.faq-alt-question i {
    color: #48bb78;
    font-size: 1.2rem;
}
.faq-alt-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    background: #f7fafc;
    color: #4a5568;
    font-size: 1.05rem;
    padding: 0 28px;
    transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.25s;
    margin-bottom: 0;
}
.faq-alt-item .faq-alt-question[aria-expanded="true"] + .faq-alt-answer {
    padding: 0 28px 18px 28px;
    opacity: 1;
}
@media (max-width: 700px) {
    .faq-section-alt {
        padding: 28px 0 18px 0;
    }
    .faq-alt-header h2 {
        font-size: 1.2rem;
    }
    .faq-alt-list {
        gap: 10px;
    }
    .faq-alt-item {
        border-radius: 10px;
    }
    .faq-alt-question {
        font-size: 1.01rem;
        padding: 14px 12px 10px 12px;
    }
    .faq-alt-answer {
        font-size: 0.98rem;
        padding: 0 12px;
    }
    .faq-alt-item .faq-alt-question[aria-expanded="true"] + .faq-alt-answer {
        padding: 0 12px 10px 12px;
    }
}
.testimonials-section-alt {
    background: linear-gradient(120deg, #f7fafc 60%, #e6fffa 100%);
    padding: 56px 0 40px 0;
    margin: 0 0 48px 0;
}
.testimonials-alt-header {
    text-align: center;
    margin-bottom: 36px;
}
.testimonials-alt-header h2 {
    font-size: 2.1rem;
    font-weight: 900;
    color: #2b6cb0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.testimonials-alt-header h2 i {
    color: #f6ad55;
    font-size: 2rem;
}
.testimonials-alt-header p {
    color: #4a5568;
    font-size: 1.08rem;
    max-width: 540px;
    margin: 0 auto;
}
.testimonials-alt-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.testimonial-alt-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 32px rgba(44,108,176,0.10);
    padding: 32px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.22s, transform 0.22s;
    position: relative;
    overflow: hidden;
    border: 1.5px solid #e2e8f0;
    min-width: 260px;
    max-width: 320px;
    flex: 1 1 300px;
}
.testimonial-alt-card:hover {
    box-shadow: 0 16px 48px rgba(44,108,176,0.18);
    transform: translateY(-6px) scale(1.03);
    border-color: #b2f5ea;
}
.testimonial-alt-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 14px;
    border: 3px solid #48bb78;
    box-shadow: 0 2px 12px rgba(44,108,176,0.10);
}
.testimonial-alt-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.testimonial-alt-content {
    text-align: center;
}
.testimonial-alt-quote {
    color: #f6ad55;
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.testimonial-alt-content p {
    color: #2b6cb0;
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 12px;
    min-height: 48px;
}
.testimonial-alt-stars {
    color: #f6ad55;
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.testimonial-alt-author {
    color: #4a5568;
    font-size: 1.01rem;
    font-weight: 700;
    display: block;
    margin-top: 6px;
}
.testimonial-alt-author span {
    color: #48bb78;
    font-size: 0.98rem;
    font-weight: 600;
    margin-left: 6px;
}
@media (max-width: 900px) {
    .testimonials-section-alt {
        padding: 28px 0 18px 0;
    }
    .testimonials-alt-header h2 {
        font-size: 1.2rem;
    }
    .testimonials-alt-grid {
        gap: 14px;
    }
    .testimonial-alt-card {
        padding: 18px 8px 12px 8px;
        min-width: 180px;
        max-width: 100vw;
    }
    .testimonial-alt-avatar {
        width: 48px;
        height: 48px;
        margin-bottom: 8px;
    }
    .testimonial-alt-content p {
        font-size: 0.98rem;
        min-height: 32px;
    }
    .testimonial-alt-stars {
        font-size: 1rem;
    }
}
.register-container-alt {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(44,108,176,0.10);
    padding: 44px 32px 32px 32px;
    max-width: 400px;
    margin: 48px auto 48px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.register-alt-header {
    text-align: center;
    margin-bottom: 28px;
}
.register-alt-header h1 {
    color: #2b6cb0;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.register-alt-header h1 i {
    color: #48bb78;
    font-size: 1.5rem;
}
.register-alt-header p {
    color: #4a5568;
    font-size: 1.08rem;
    margin: 0 auto;
}
.register-form-alt {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.register-input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: #f7fafc;
    border-radius: 8px;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(44,108,176,0.04);
    margin-bottom: 0;
}
.register-input-icon {
    color: #2b6cb0;
    font-size: 1.1rem;
    margin-left: 12px;
    margin-right: 6px;
}
.register-input-group input {
    border: none;
    background: transparent;
    padding: 14px 12px 14px 0;
    font-size: 1.08rem;
    border-radius: 8px;
    width: 100%;
    outline: none;
}
.register-input-group input:focus {
    background: #e6fffa;
}
.register-hizmetler-alt {
    margin-bottom: 0;
}
.register-hizmetler-title {
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 8px;
    font-size: 1.05rem;
}
.register-hizmetler-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0;
}
.register-hizmet-card {
    background: #f7fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 1.01rem;
    color: #2b6cb0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.18s, border 0.18s, color 0.18s;
    box-shadow: 0 2px 8px rgba(44,108,176,0.04);
    user-select: none;
}
.register-hizmet-card input[type="checkbox"] {
    accent-color: #2b6cb0;
    margin-right: 4px;
}
.register-hizmet-card:hover, .register-hizmet-card input[type="checkbox"]:checked + span {
    background: #e6fffa;
    border-color: #48bb78;
    color: #38a169;
}
.register-btn-alt {
    background: linear-gradient(135deg, #2b6cb0 60%, #48bb78 100%);
    color: #fff;
    font-weight: 800;
    font-size: 1.13rem;
    padding: 14px 0;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(44,108,176,0.10);
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.18s, transform 0.18s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.register-btn-alt i {
    font-size: 1.1rem;
}
.register-btn-alt:hover {
    background: linear-gradient(135deg, #48bb78 60%, #2b6cb0 100%);
    transform: translateY(-2px) scale(1.03);
}
.register-bottom-link-alt {
    text-align: center;
    margin-top: 18px;
    color: #4a5568;
    font-size: 1.01rem;
}
.register-bottom-link-alt a {
    color: #2b6cb0;
    font-weight: 700;
    text-decoration: underline;
    margin-left: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.18s;
}
.register-bottom-link-alt a:hover {
    color: #48bb78;
}
.login-container-alt {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(44,108,176,0.10);
    padding: 44px 32px 32px 32px;
    max-width: 400px;
    margin: 48px auto 48px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.login-alt-header {
    text-align: center;
    margin-bottom: 28px;
}
.login-alt-header h1 {
    color: #2b6cb0;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.login-alt-header h1 i {
    color: #48bb78;
    font-size: 1.5rem;
}
.login-alt-header p {
    color: #4a5568;
    font-size: 1.08rem;
    margin: 0 auto;
}
.login-form-alt {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.login-input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: #f7fafc;
    border-radius: 8px;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(44,108,176,0.04);
    margin-bottom: 0;
}
.login-input-icon {
    color: #2b6cb0;
    font-size: 1.1rem;
    margin-left: 12px;
    margin-right: 6px;
}
.login-input-group input {
    border: none;
    background: transparent;
    padding: 14px 12px 14px 0;
    font-size: 1.08rem;
    border-radius: 8px;
    width: 100%;
    outline: none;
}
.login-input-group input:focus {
    background: #e6fffa;
}
.login-btn-alt {
    background: linear-gradient(135deg, #2b6cb0 60%, #48bb78 100%);
    color: #fff;
    font-weight: 800;
    font-size: 1.13rem;
    padding: 14px 0;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(44,108,176,0.10);
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.18s, transform 0.18s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.login-btn-alt i {
    font-size: 1.1rem;
}
.login-btn-alt:hover {
    background: linear-gradient(135deg, #48bb78 60%, #2b6cb0 100%);
    transform: translateY(-2px) scale(1.03);
}
.login-bottom-link-alt {
    text-align: center;
    margin-top: 18px;
    color: #4a5568;
    font-size: 1.01rem;
}
.login-bottom-link-alt a {
    color: #2b6cb0;
    font-weight: 700;
    text-decoration: underline;
    margin-left: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.18s;
}
.login-bottom-link-alt a:hover {
    color: #48bb78;
}
.login-forgot-link {
    color: #2b6cb0;
    font-weight: 600;
    text-decoration: underline;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.98rem;
    transition: color 0.18s;
}
.login-forgot-link:hover {
    color: #48bb78;
}
@media (max-width: 600px) {
    .login-container-alt {
        padding: 16px 6vw 10px 6vw;
        max-width: 100%;
        margin: 18px auto 18px auto;
    }
    .login-alt-header h1 {
        font-size: 1.2rem;
    }
    .login-form-alt {
        gap: 10px;
    }
    .login-btn-alt {
        font-size: 1.01rem;
        padding: 10px 0;
    }
}
.sifre-unut-container {
    max-width: 400px;
    margin: 40px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px 0 rgba(44,62,80,0.08);
    padding: 32px 28px 18px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sifre-unut-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(90deg, #2b6cb0, #48bb78);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sifre-unut-header p {
    color: #4a5568;
    font-size: 1.05rem;
    margin-bottom: 18px;
    text-align: center;
}
.sifre-unut-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 10px;
}
.sifre-unut-input-group {
    display: flex;
    align-items: center;
    background: #f7fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    padding: 8px 12px;
    margin-bottom: 4px;
}
.sifre-unut-input-icon {
    color: #2b6cb0;
    font-size: 1.1rem;
    margin-right: 8px;
}
.sifre-unut-input-group input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 1rem;
    width: 100%;
    padding: 6px 0;
}
.sifre-unut-btn {
    background: linear-gradient(90deg, #2b6cb0, #48bb78);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 0;
    font-size: 1.08rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s;
    box-shadow: 0 2px 8px 0 rgba(44,62,80,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}
.sifre-unut-btn:hover {
    background: linear-gradient(90deg, #48bb78, #2b6cb0);
}
.sifre-unut-success {
    background: #e6fffa;
    color: #276749;
    border: 1px solid #38b2ac;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 12px;
    text-align: center;
    font-weight: 500;
}
.sifre-unut-error {
    background: #fff5f5;
    color: #c53030;
    border: 1px solid #feb2b2;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 12px;
    text-align: center;
    font-weight: 500;
}
.sifre-unut-bottom-link {
    margin-top: 10px;
    text-align: center;
}
.sifre-unut-bottom-link a {
    color: #2b6cb0;
    font-weight: 600;
    text-decoration: underline;
    font-size: 0.98rem;
    transition: color 0.18s;
}
.sifre-unut-bottom-link a:hover {
    color: #48bb78;
}
@media (max-width: 600px) {
    .sifre-unut-container {
        padding: 18px 6vw 10px 6vw;
        margin: 24px 0;
    }
    .sifre-unut-header h1 {
        font-size: 1.3rem;
    }
}

/* Blog Section Styles */
.blog-section-alt {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.blog-section-alt .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background: none;
    box-shadow: none;
}

.blog-section-alt::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.blog-alt-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.blog-alt-header h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.blog-alt-header h2 i {
    color: #ffd700;
    margin-right: 15px;
    font-size: 2.2rem;
}

.blog-alt-header p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-alt-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    padding-left: 20px!important;
    padding-right: 20px!important;
}

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

.blog-alt-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.blog-alt-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

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

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

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

.blog-alt-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255,107,107,0.3);
    line-height: 1;
    display: inline-block;
}

.blog-alt-content {
    padding: 25px;
}

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

.blog-alt-date, .blog-alt-read-time {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-alt-date i, .blog-alt-read-time i {
    color: #ff6b6b;
    font-size: 0.9rem;
}

.blog-alt-content h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-alt-card:hover .blog-alt-content h3 {
    color: #ff6b6b;
}

.blog-alt-content p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

.blog-alt-read-more {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.blog-alt-read-more:hover {
    color: #ee5a24;
    gap: 12px;
}

.blog-alt-read-more i {
    transition: transform 0.3s ease;
}

.blog-alt-read-more:hover i {
    transform: translateX(5px);
}

.blog-alt-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-btn-purple {
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    color: white !important;
    border: none !important;
    padding: 15px 30px !important;
    border-radius: 50px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    box-shadow: 0 10px 25px rgba(102,126,234,0.3) !important;
    transition: all 0.3s ease !important;
}

.cta-btn-purple:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 35px rgba(102,126,234,0.4) !important;
    background: linear-gradient(135deg, #764ba2, #667eea) !important;
}

/* Blog Responsive */
@media (max-width: 900px) {
    .blog-section-alt {
        padding: 60px 0;
        margin: 30px 0;
    }
    
    .blog-section-alt .container {
        padding: 0 15px;
    }
    
    .blog-alt-header h2 {
        font-size: 2rem;
    }
    
    .blog-alt-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .blog-alt-card {
        margin-bottom: 20px;
    }
    
    .blog-alt-content {
        padding: 20px;
    }
    
    .blog-alt-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 600px) {
    .blog-section-alt .container {
        padding: 0 10px;
    }
    
    .blog-alt-header h2 {
        font-size: 1.8rem;
    }
    
    .blog-alt-header p {
        font-size: 1rem;
    }
    
    .blog-alt-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .blog-alt-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .cta-btn-purple {
        padding: 12px 25px !important;
        font-size: 1rem !important;
    }
}

/* Blog Detail Page Styles */
.blog-detail-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.blog-detail-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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.blog-detail-header .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background: none;
    box-shadow: none;
}

.blog-detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.blog-detail-breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-detail-breadcrumb a:hover {
    color: white;
}

.blog-detail-breadcrumb i {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
}

.blog-detail-breadcrumb span {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    align-items: center;
}

.blog-detail-category {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255,107,107,0.3);
}

.blog-detail-date, .blog-detail-read-time, .blog-detail-author {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

.blog-detail-date i, .blog-detail-read-time i, .blog-detail-author i {
    color: #ffd700;
    font-size: 0.9rem;
}

.blog-detail-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.blog-detail-excerpt {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    max-width: 800px;
}

.blog-detail-content {
    padding: 60px 0;
}

.blog-detail-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background: none;
    box-shadow: none;
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.blog-detail-main {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.blog-detail-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

.blog-detail-text {
    padding: 40px;
}

.blog-detail-text h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 30px 0 15px 0;
}

.blog-detail-text h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 25px 0 10px 0;
}

.blog-detail-text p {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: left;
}

.blog-detail-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.blog-detail-text li {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

.blog-detail-text blockquote {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-left: 4px solid #ff6b6b;
    padding: 20px;
    margin: 30px 0;
    border-radius: 10px;
    font-style: italic;
    position: relative;
}

.blog-detail-text blockquote::before {
    content: '"';
    font-size: 4rem;
    color: #ff6b6b;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
}

.blog-detail-text blockquote cite {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    color: #2c3e50;
    font-style: normal;
}

.blog-detail-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
    color: white;
}

.blog-detail-cta h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.blog-detail-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.blog-detail-share {
    padding: 30px 40px;
    border-top: 1px solid #e2e8f0;
}

.blog-detail-share h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

.blog-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.sidebar-widget h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid #ff6b6b;
    padding-bottom: 10px;
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-details p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.related-post-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-post {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    transition: background 0.3s ease;
    text-decoration: none;
}

.related-post:hover {
    background: #f8f9fa;
}

.related-post img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.related-post-content h4 {
    color: #2c3e50;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.3;
}

.related-post-date {
    color: #6c757d;
    font-size: 0.8rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #ff6b6b;
}

.newsletter-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,107,0.3);
}

.more-articles {
    background: #f8f9fa;
    padding: 60px 0;
}

.more-articles .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background: none;
    box-shadow: none;
}

.more-articles h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 40px;
}

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

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

.more-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.more-article-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.more-article-content {
    padding: 25px;
}

.more-article-category {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 15px;
}

.more-article-content h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.more-article-content p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.more-article-link {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.more-article-link:hover {
    color: #ee5a24;
    gap: 12px;
}

/* Blog Detail Responsive */
@media (max-width: 900px) {
    .blog-detail-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-detail-title {
        font-size: 2.2rem;
    }
    
    .blog-detail-text {
        padding: 30px;
    }
    
    .blog-detail-text h2 {
        font-size: 1.6rem;
    }
    
    .blog-detail-text h3 {
        font-size: 1.3rem;
    }
    
    .more-articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .blog-detail-header {
        padding: 40px 0;
    }
    
    .blog-detail-header .container {
        padding: 0 15px;
    }
    
    .blog-detail-title {
        font-size: 1.8rem;
    }
    
    .blog-detail-excerpt {
        font-size: 1.1rem;
    }
    
    .blog-detail-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .blog-detail-content .container {
        padding: 0 15px;
    }
    
    .blog-detail-text {
        padding: 20px;
    }
    
    .blog-detail-text h2 {
        font-size: 1.4rem;
    }
    
    .blog-detail-text h3 {
        font-size: 1.2rem;
    }
    
    .blog-detail-share {
        padding: 20px;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        justify-content: center;
    }
    
    .more-articles .container {
        padding: 0 15px;
    }
    
    .more-articles-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .more-article-content {
        padding: 20px;
    }
}

/* Blog Ana Sayfa Kartları ve Detay */
.blog-card, .blog-alt-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
  height: 100%;
}
.blog-card:hover, .blog-alt-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.13);
}
.blog-card-image, .blog-alt-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card-image img, .blog-alt-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.blog-card:hover img, .blog-alt-card:hover img {
  transform: scale(1.04);
}

.blog-card-overlay, .blog-alt-category {
  position: absolute;
  left: 14px;
  background: rgba(40,40,40,0.82);
  color: #fff;
  padding: 5px 14px;
  border-radius: 18px;
  font-size: 0.92rem;
  z-index: 2;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.blog-card-body, .blog-alt-content {
  padding: 1.25rem 1.25rem 1.1rem 1.25rem;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.blog-meta, .blog-alt-meta {
  display: flex;
  gap: 1.1rem;
  font-size: 0.97rem;
  color: #888;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}
.blog-card-title, .blog-alt-content h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin: 0.5rem 0 0.7rem 0;
  color: #232323;
  line-height: 1.3;
}
.blog-card-excerpt, .blog-alt-content p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.blog-card-footer, .blog-alt-content .blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.blog-author, .author-avatar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.author-avatar, .author-avatar-large {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}
.blog-read-time, .blog-alt-read-time, .blog-alt-views {
  font-size: 0.97rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.blog-alt-read-more {
  color: var(--primary-color, #6c63ff);
  font-weight: 600;
  text-decoration: none;
  margin-top: 1rem;
  display: inline-block;
  transition: color 0.2s;
}
.blog-alt-read-more:hover {
  color: var(--secondary-color, #ff6b6b);
}
@media (max-width: 991px) {
  .blog-alt-grid, .row {
    flex-direction: column;
  }
  .blog-alt-card, .blog-card {
    margin-bottom: 2rem;
  }
}

/* Blog Detay Sayfası */
.blog-detail-hero {
  background-size: cover;
  background-position: center;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
}
.blog-detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(0,0,0,0.7),rgba(0,0,0,0.3));
  z-index: 1;
}
.blog-detail-hero .container {
  position: relative;
  z-index: 2;
}

/* Blog Detay İçerik */
.blog-content {
  background: #fff;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  margin-top: -2.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.blog-author-info {
  border-bottom: 1px solid #eee;
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
}
.author-avatar-large {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}
.blog-content-text {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #333;
}
.blog-content-text h2 {
  color: var(--primary-color, #6c63ff);
  margin: 2rem 0 1rem;
  font-weight: 700;
}
.blog-content-text p {
  margin-bottom: 1.3rem;
}
.blog-share {
  border-top: 1px solid #eee;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}
.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.blog-sidebar {
  position: sticky;
  top: 2rem;
}
.sidebar-widget {
  background: #fff;
  border-radius: 13px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  margin-bottom: 1.5rem;
}
.sidebar-widget h4 {
  color: var(--primary-color, #6c63ff);
  margin-bottom: 1.1rem;
  font-weight: 700;
}
.related-post {
  border-bottom: 1px solid #eee;
  padding-bottom: 0.7rem;
}
.related-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.related-post h6 {
  margin-bottom: 0.4rem;
}
.related-post h6 a {
  color: var(--primary-color, #6c63ff);
  text-decoration: none;
  font-weight: 600;
}
.related-post h6 a:hover {
  color: var(--secondary-color, #ff6b6b);
}
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.category-list li {
  margin-bottom: 0.6rem;
}
.category-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #666;
  text-decoration: none;
  padding: 0.4rem 0;
  transition: all 0.3s ease;
}
.category-list a:hover {
  color: var(--primary-color, #6c63ff);
  transform: translateX(5px);
}
.category-list .badge {
  font-size: 0.75rem;
  padding: 0.22rem 0.45rem;
}

@media (max-width: 991px) {
  .blog-alt-grid, .row {
    flex-direction: column;
  }
  .blog-alt-card, .blog-card {
    margin-bottom: 2rem;
  }
  .blog-content {
    padding: 1.1rem;
    margin-top: -1.2rem;
  }
}
@media (max-width: 768px) {
  .blog-content-text {
    font-size: 0.98rem;
  }
  .share-buttons {
    flex-direction: column;
  }
  .share-buttons .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .blog-sidebar {
    position: static;
    margin-top: 2rem;
  }
}

/* --- MODERN BLOG CSS --- */

/* Blog Hero Section */
.blog-hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 4rem 0;
  color: white;
  text-align: center;
}
.blog-hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.blog-hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}
.blog-hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}
.stat-item {
  text-align: center;
}
.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Blog Main Content */
.blog-main-content {
  padding: 4rem 0;
  background: #f8f9fa;
}

/* Modern Blog Card */
.blog-card-modern {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 1.5rem;
}
.blog-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.blog-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-card-modern:hover .blog-card-image img {
  transform: scale(1.05);
}
.blog-card-category {
  position: absolute;
  top: 16px;
  left: 16px;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}
.blog-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.blog-card-modern:hover .blog-card-overlay {
  opacity: 1;
}
.read-more-btn {
  background: white;
  color: #333;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.read-more-btn:hover {
  background: #667eea;
  color: white;
  transform: scale(1.1);
}
.blog-card-content {
  padding: 1.5rem;
}
.blog-meta-modern {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.blog-meta-modern span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.blog-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.blog-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.blog-title a:hover {
  color: #667eea;
}
.blog-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.blog-author-modern {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}
.author-avatar-modern {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.author-info {
  display: flex;
  flex-direction: column;
}
.author-name {
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
}
.author-role {
  font-size: 0.8rem;
  color: #666;
}

/* Empty State */
.empty-blog-state {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.empty-icon {
  font-size: 4rem;
  color: #ddd;
  margin-bottom: 1rem;
}
.empty-blog-state h3 {
  color: #333;
  margin-bottom: 0.5rem;
}
.empty-blog-state p {
  color: #666;
}

/* Modern Sidebar */
.blog-sidebar-modern {
  position: sticky;
  top: 2rem;
}
.sidebar-widget-modern {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
}
.widget-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.category-list-modern {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.category-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}
.category-item:hover {
  background: #667eea;
  color: white;
  transform: translateX(5px);
}
.category-count {
  background: rgba(0,0,0,0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}
.popular-posts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.popular-post-item {
  display: flex;
  gap: 0.8rem;
  padding: 0.8rem;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.popular-post-item:hover {
  background: #e9ecef;
}
.popular-post-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.popular-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.popular-post-content h6 {
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
  line-height: 1.4;
}
.popular-post-content h6 a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.popular-post-content h6 a:hover {
  color: #667eea;
}
.popular-post-date {
  font-size: 0.8rem;
  color: #666;
}

/* Newsletter Widget */
.newsletter-widget {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}
.newsletter-widget .widget-title {
  color: white;
}
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.newsletter-form input {
  flex: 1;
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
}
.newsletter-form button {
  background: white;
  color: #667eea;
  border: none;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.newsletter-form button:hover {
  background: #f8f9fa;
  transform: scale(1.05);
}

/* Blog Detail Hero */
.blog-detail-hero-modern {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.blog-detail-hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102,126,234,0.85) 0%, rgba(118,75,162,0.85) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 2;
}

.blog-detail-hero-content {
    text-align: center;
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 0px 20px;
    width: 100%;
}

.blog-category-badge-modern {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: white;
    backdrop-filter: blur(15px);
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.blog-category-badge-modern:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.blog-detail-title {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-detail-meta {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    opacity: 0.95;
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.meta-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-1px);
}

.meta-item i {
    color: #ffd700;
    font-size: 1rem;
}

/* Blog Detay Content */
.blog-detail-content-modern {
    padding: 80px 0;
    background: #f8fafc;
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    align-items: start;
}

.blog-detail-main {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-detail-article {
    max-width: 100%;
}

/* Blog Content Modern */
.blog-content-modern {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
}

.blog-content-modern h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 40px 0 20px 0;
    color: #2c3e50;
    border-left: 4px solid #667eea;
    padding-left: 20px;
}

.blog-content-modern h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 30px 0 15px 0;
    color: #2c3e50;
}

.blog-content-modern p {
    margin-bottom: 20px;
    color: #4a5568;
}

.blog-content-modern ul, .blog-content-modern ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-content-modern li {
    margin-bottom: 10px;
    color: #4a5568;
}

.blog-content-modern blockquote {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    position: relative;
    font-style: italic;
    font-size: 1.2rem;
}

.blog-content-modern blockquote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 20px;
    color: rgba(255,255,255,0.3);
    font-family: serif;
}

.blog-content-modern img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 0px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
  }
  
  .blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }


.blog-content-modern a {
    color: #667eea;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.blog-content-modern a:hover {
    border-bottom-color: #667eea;
}

/* Share Section Modern */
.share-section-modern {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #e2e8f0;
}

.share-section-modern h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-section-modern h5::before {
    content: '';
    width: 30px;
    height: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

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

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

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

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

.share-btn.copy-link {
    background: #6c757d;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.share-btn.copied {
    background: #28a745;
    color: white;
}

/* Modern Sidebar */
.blog-detail-sidebar-modern {
    position: sticky;
    top: 30px;
}

.sidebar-widget-modern {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.widget-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-title i {
    color: #667eea;
}

/* Related Posts Modern */
.related-posts-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-post-modern {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.related-post-modern:hover {
    background: #667eea;
    color: white;
    transform: translateX(5px);
}

.related-post-modern:hover a {
    color: white;
}

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

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

.related-post-content h6 {
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.related-post-content h6 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: #6c757d;
}

.related-post-modern:hover .related-post-meta {
    color: rgba(255,255,255,0.8);
}

/* Category List Modern */
.category-list-modern {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8fafc;
    border-radius: 12px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-item:hover {
    background: #667eea;
    color: white;
    transform: translateX(5px);
}

.category-count {
    background: rgba(255,255,255,0.2);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Popular Posts Modern */
.popular-posts-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popular-post-modern {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.popular-post-modern:hover {
    background: #667eea;
    color: white;
}

.popular-post-modern:hover a {
    color: white;
}

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

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

.popular-post-content h6 {
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.popular-post-content h6 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-post-date {
    font-size: 0.8rem;
    color: #6c757d;
}

.popular-post-modern:hover .popular-post-date {
    color: rgba(255,255,255,0.8);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .blog-detail-layout {
        grid-template-columns: 1fr 300px;
        gap: 40px;
    }
    
    .blog-detail-main {
        padding: 40px;
    }
    
    .blog-detail-title {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    .blog-detail-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-detail-sidebar-modern {
        position: static;
        order: -1;
    }
    
    .blog-detail-hero-modern {
        min-height: 350px;
    }
    
    .blog-detail-title {
        font-size: 2.4rem;
    }
    
    .blog-detail-meta {
        gap: 15px;
    }
    
    .meta-item {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}

@media (max-width: 768px) {
    .blog-detail-hero-modern {
        min-height: 300px;
    }
    

    
    .blog-detail-title {
        font-size: 1.8rem;
    }
    
    .blog-detail-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .meta-item {
        font-size: 0.85rem;
        padding: 5px 10px;
    }
    
    .blog-category-badge-modern {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}
    
    .blog-detail-content-modern {
        padding: 60px 0;
    }
    
    .blog-detail-main {
        padding: 30px 20px;
    }
    
    .blog-content-modern {
        font-size: 1rem;
    }
    
    .blog-content-modern h2 {
        font-size: 1.6rem;
    }
    
    .blog-content-modern h3 {
        font-size: 1.3rem;
    }
    
    .share-buttons-modern {
        flex-direction: column;
    }
    
    .share-btn {
        justify-content: center;
    }
    
    .sidebar-widget-modern {
        padding: 20px;
    }
    
    .related-post-meta {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .blog-detail-hero-modern {
        min-height: 250px;
    }
    

    
    .blog-detail-title {
        font-size: 1.5rem;
    }
    
    .blog-detail-main {
        padding: 20px 15px;
    }
    
    .blog-content-modern h2 {
        font-size: 1.4rem;
    }
    
    .blog-content-modern h3 {
        font-size: 1.2rem;
    }
    
    .blog-content-modern blockquote {
        padding: 20px;
        font-size: 1rem;
    }
    
    .meta-item {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
    
    .blog-category-badge-modern {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}
