﻿/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid #fff;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #fff;
    font-weight: 700;
}

.logo h2 a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo h2 a:hover {
    color: #fff;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #fff;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    height: calc(100vh - 90px);
    padding-top: 90px;
    overflow: hidden;
    margin-bottom: 20px;
    min-height: 600px;
}

.slider-container {
    position: relative;
    width: 100%;
    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;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
}

.slide.active {
    opacity: 1;
}

.slide-content {
    display: flex;
    align-items: stretch;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 3rem;
}

.slide-text {
    flex: 0 0 52%;
    z-index: 2;
    position: relative;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: slideInLeft 1s ease-out;
}

.slide-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.6;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.slide-info {
    margin-bottom: 2rem;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.info-item i {
    color: #000;
    font-size: 1.2rem;
    width: 20px;
}

.info-item span {
    color: #333;
    font-weight: 500;
}

.slide-quote {
    background: rgba(0, 0, 0, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 4px solid #000;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.slide-quote i {
    color: #000;
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.slide-quote p {
    font-style: italic;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
}

.slide-quote span {
    color: #666;
    font-weight: 600;
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

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

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

.btn-secondary {
    background: transparent;
    color: #000;
    border: 2px solid #000;
}

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

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: 2px solid #25D366;
}

.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    color: white;
    transform: translateY(-2px);
}

.slide-image {
    flex: 0 0 48%;
    position: relative;
    height: 100%;
    animation: slideInRight 1s ease-out 0.3s both;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.slide-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.slide-bg-1 { background: linear-gradient(45deg, #000, #333); }
.slide-bg-2 { background: linear-gradient(45deg, #333, #555); }
.slide-bg-3 { background: linear-gradient(45deg, #555, #777); }
.slide-bg-4 { background: linear-gradient(45deg, #777, #999); }
.slide-bg-5 { background: linear-gradient(45deg, #999, #bbb); }

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
}

.prev-btn, .next-btn {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #000;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 1rem;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #000, #333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.service-card h3 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-price {
    font-weight: 600;
    color: #000;
    font-size: 1.1rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

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

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Hero Section */
.about-hero {
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 25px;
    padding: 4rem 3rem;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #000, #333, #000);
    border-radius: 25px 25px 0 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #000, #333);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-badge i {
    font-size: 1.1rem;
}

.about-hero h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #000;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Mission & Vision Cards */
.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mission-card, .vision-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #000, #333);
    border-radius: 20px 20px 0 0;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #333, #000);
    border-radius: 20px 20px 0 0;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #000, #333);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.mission-card h4, .vision-card h4 {
    font-size: 1.4rem;
    color: #000;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mission-card p, .vision-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Features Grid */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #000, #333);
    border-radius: 15px 15px 0 0;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 2px solid #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #000, #333);
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 1.2rem;
    color: #000;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: white;
}

.feature-card h5 {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.about-image {
    position: relative;
    height: 450px;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.image-container:hover .about-img {
    transform: scale(1.05);
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    display: block;
}

.overlay-content span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Statistics Section */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 4rem 0;
    padding: 3rem 0;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: #666;
    font-weight: 500;
    font-size: 1rem;
}

/* Testimonial Section */
.about-testimonial {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #000, #333);
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-testimonial::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.testimonial-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.quote-icon {
    margin-bottom: 1.5rem;
}

.quote-icon i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-content blockquote {
    font-size: 1.3rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-info strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.author-info span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Call to Action */
.about-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #000;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Blog Section */
.blog {
    padding: 100px 0;
    background: white;
}

/* Blog Carousel */
.blog-carousel {
    position: relative;
    margin: 2rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.blog-carousel-track {
    display: flex;
    gap: 2rem;
    padding: 0 60px; /* space for buttons */
    overflow: visible;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.blog-carousel-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
    flex: 0 0 calc(33.333% - 1.33rem); /* 3 kart için genişlik */
    min-width: 300px;
    scroll-snap-align: start;
}

.blog-carousel-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-carousel .blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

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

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

.blog-carousel-item:hover .blog-img {
    transform: scale(1.05);
}

.blog-carousel .blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-carousel .blog-content {
    padding: 1.5rem;
}

.blog-carousel .blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.blog-carousel .blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-carousel .blog-content h3 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 600;
}

.blog-carousel .blog-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-carousel .blog-read-more {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.blog-carousel .blog-read-more:hover {
    color: #333;
}

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

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

.blog-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.blog-carousel-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.blog-carousel-btn.prev { 
    left: 0; 
}

.blog-carousel-btn.next { 
    right: 0; 
}

/* Blog Carousel Indicators */
.blog-carousel-indicators {
    display: none; /* Desktop'ta gizli */
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 0;
}

.blog-carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.blog-carousel-indicator.active {
    background: #000;
    width: 24px;
    border-radius: 4px;
}

.blog-carousel-indicator:hover {
    background: rgba(0, 0, 0, 0.4);
}

@media (max-width: 1024px) {
    .blog-carousel-indicators {
        display: flex; /* Tablet ve mobilde göster */
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-carousel-item {
        flex: 0 0 calc(50% - 1rem); /* 2 kart için genişlik */
    }
}

@media (max-width: 768px) {
    .blog-carousel {
        padding: 0 10px;
        margin: 1.5rem 0;
    }
    
    .blog-carousel-item {
        flex: 0 0 85%; /* 1 kart için genişlik - biraz daha geniş */
        min-width: 280px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .blog-carousel-track {
        padding: 0 50px;
        gap: 1rem;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        align-items: stretch;
    }
    
    .blog-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(5px);
        z-index: 10;
    }
    
    .blog-carousel .blog-card-link {
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .blog-carousel .blog-image {
        height: 200px;
        flex-shrink: 0;
    }
    
    .blog-carousel .blog-img {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
    }
    
    .blog-carousel .blog-content {
        padding: 1.2rem;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .blog-carousel .blog-content h3 {
        font-size: 1.05rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }
    
    .blog-carousel .blog-content p {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        margin-bottom: 1rem;
        flex: 1;
    }
    
    .blog-carousel .blog-meta {
        flex-wrap: wrap;
        gap: 0.8rem;
        margin-bottom: 0.8rem;
        font-size: 0.85rem;
    }
    
    .blog-carousel .blog-read-more {
        margin-top: auto;
    }
}

@media (max-width: 480px) {
    .blog-carousel {
        padding: 0 5px;
        margin: 1rem 0;
    }
    
    .blog-carousel-item {
        flex: 0 0 92%; /* Mobilde daha geniş */
        min-width: 260px;
        max-width: 340px;
    }
    
    .blog-carousel-track {
        padding: 0 40px;
        gap: 0.8rem;
    }
    
    .blog-carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .blog-carousel-btn.prev {
        left: 5px;
    }
    
    .blog-carousel-btn.next {
        right: 5px;
    }
    
    .blog-carousel .blog-card-link {
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .blog-carousel .blog-image {
        height: 180px;
        flex-shrink: 0;
    }
    
    .blog-carousel .blog-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .blog-carousel .blog-content {
        padding: 1rem;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .blog-carousel .blog-content h3 {
        font-size: 1rem;
        line-height: 1.25;
        margin-bottom: 0.7rem;
    }
    
    .blog-carousel .blog-content p {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        flex: 1;
        margin-bottom: 0.8rem;
    }
    
    .blog-carousel .blog-meta {
        font-size: 0.75rem;
        gap: 0.6rem;
        margin-bottom: 0.7rem;
    }
    
    .blog-carousel .blog-read-more {
        font-size: 0.85rem;
        margin-top: auto;
    }
    
    .blog-carousel-indicators {
        margin-top: 15px;
        padding: 8px 0;
    }
    
    .blog-carousel-indicator {
        width: 7px;
        height: 7px;
    }
    
    .blog-carousel-indicator.active {
        width: 20px;
    }
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

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

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

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

.blog-image a {
    display: block;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

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

.blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.blog-card-link:hover {
    text-decoration: none;
    color: inherit;
}

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

.blog-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

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

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.blog-content {
    padding: 1.5rem;
}

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

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

.blog-meta i {
    font-size: 0.8rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 600;
}

.blog-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: #333;
}

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

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

/* Blog Background Gradients */
.blog-1 { background: linear-gradient(45deg, #f0f0f0, #e0e0e0); }
.blog-2 { background: linear-gradient(45deg, #e8e8e8, #d8d8d8); }
.blog-3 { background: linear-gradient(45deg, #d0d0d0, #c0c0c0); }
.blog-4 { background: linear-gradient(45deg, #b8b8b8, #a8a8a8); }
.blog-5 { background: linear-gradient(45deg, #a0a0a0, #909090); }
.blog-6 { background: linear-gradient(45deg, #888888, #787878); }

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8f8f8;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    color: #000;
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.contact-item h4 {
    color: #000;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }

    /* Mobile menu links should be dark on white background */
    .nav-menu a {
        color: #333;
    }
    .nav-menu a:hover {
        color: #000;
    }
    .nav-menu a::after {
        background: #000;
    }
    
    .slide-content {
        flex-direction: column;
        text-align: center;
        padding: 80px 15px 30px;
        gap: 1.5rem;
        min-height: 100vh;
        justify-content: center;
    }
    
    .slide-text h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .slide-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .slide-info {
        margin-bottom: 1.5rem;
    }
    
    .info-item {
        margin-bottom: 0.8rem;
        font-size: 0.9rem;
    }
    
    .slide-image {
        height: 280px;
        margin-top: 0;
        order: -1;
    }
    
    .slide-text {
        order: 2;
        padding: 0 10px;
    }
    
    .slide-buttons {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .slide-buttons .btn {
        width: 100%;
        max-width: 250px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .slider-controls {
        padding: 0 1rem;
    }
    
    .prev-btn, .next-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-indicators {
        bottom: 1rem;
        display: flex;
        justify-content: center;
        gap: 1rem;
    }
    
    .about-content {
        gap: 2rem;
    }
    
    .about-hero {
        padding: 3rem 2rem;
    }
    
    .about-hero h3 {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .about-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-card, .vision-card {
        padding: 2rem;
    }
    
    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2rem 0;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .about-testimonial {
        padding: 2rem;
        margin: 3rem 0;
    }
    
    .testimonial-content blockquote {
        font-size: 1.1rem;
    }
    
    .about-cta {
        padding: 2rem;
    }
    
    .about-cta h3 {
        font-size: 1.8rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .slide-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .slide-text h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .slide-text p {
        font-size: 0.9rem;
    }
    
    .slide-content {
        padding: 70px 10px 20px;
        gap: 1rem;
    }
    
    .slide-image {
        height: 250px;
    }
    
    .slide-buttons .btn {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .blog-content {
        padding: 1rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .slide-quote {
        padding: 1.5rem;
    }

    .slide-image {
        height: 280px;
    }
    
    .slide-map {
        height: 280px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .about-testimonial {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .testimonial-content blockquote {
        font-size: 1rem;
    }
    
    .about-cta {
        padding: 1.5rem;
    }
    
    .about-cta h3 {
        font-size: 1.5rem;
    }
    
    .about-hero {
        padding: 2rem 1.5rem;
    }
    
    .about-hero h3 {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .mission-card, .vision-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-icon i {
        font-size: 1.2rem;
    }
    
    .mission-card h4, .vision-card h4 {
        font-size: 1.2rem;
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .feature-icon i {
        font-size: 1.1rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-btn i {
        font-size: 24px;
    }
    
    .whatsapp-tooltip {
        right: 60px;
        font-size: 12px;
        padding: 6px 10px;
    }
}

/* First slide: show image fully and grayscale */
.hero-slider .slide:first-child .slide-image {
    background: #f4f4f4;
}

.hero-slider .slide:first-child .slide-img {
    object-fit: contain;
    object-position: center center;
    filter: grayscale(100%);
}

.slide-map {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.slide-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    position: relative;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 28px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #333;
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
}

/* Blog Article Pages */
.blog-article {
    padding: 120px 0 80px;
    background: #f8f9fa;
    min-height: 100vh;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

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

.breadcrumb a:hover {
    color: #333;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.article-meta i {
    color: #000;
}

.article-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-excerpt {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.article-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.article-image {
    margin-bottom: 2rem;
    text-align: center;
}

.article-img {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #000;
    margin: 2rem 0 1rem;
    line-height: 1.3;
}

.article-text h3 {
    font-size: 1.5rem;
    color: #000;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.article-text h4 {
    font-size: 1.2rem;
    color: #000;
    margin: 1rem 0 0.5rem;
    font-weight: 600;
}

.article-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.article-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.article-text li {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.article-text strong {
    color: #000;
    font-weight: 600;
}

.article-cta {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.article-cta h3 {
    color: #000;
    margin-bottom: 1rem;
}

.article-cta p {
    color: #666;
    margin-bottom: 1.5rem;
}

.article-footer {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.share-buttons {
    text-align: center;
    margin-bottom: 2rem;
}

.share-buttons h4 {
    color: #000;
    margin-bottom: 1rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    margin: 0 0.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.share-btn.whatsapp {
    background: #25D366;
    color: white;
}

.share-btn.whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

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

.share-btn.facebook:hover {
    background: #166FE5;
    transform: translateY(-2px);
}

.related-articles h4 {
    color: #000;
    margin-bottom: 1rem;
    text-align: center;
}

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

.related-item {
    display: block;
    text-decoration: none;
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.related-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-item h5 {
    padding: 1rem;
    color: #000;
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
}

/* Blog Article Responsive */
@media (max-width: 768px) {
    .blog-article {
        padding: 100px 0 60px;
    }
    
    .article-header {
        padding: 2rem 1.5rem;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .article-content {
        padding: 2rem 1.5rem;
    }
    
    .article-img {
        height: 250px;
    }
    
    .article-text h2 {
        font-size: 1.5rem;
    }
    
    .article-text h3 {
        font-size: 1.3rem;
    }
    
    .share-btn {
        display: block;
        margin: 0.5rem 0;
        text-align: center;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .article-header {
        padding: 1.5rem 1rem;
    }
    
    .article-header h1 {
        font-size: 1.5rem;
    }
    
    .article-content {
        padding: 1.5rem 1rem;
    }
    
    .article-img {
        height: 200px;
    }
    
    .article-text h2 {
        font-size: 1.3rem;
    }
    
    .article-text h3 {
        font-size: 1.1rem;
    }
}

/* Blog Detail Modal Styles */
.blog-detail-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    flex-wrap: wrap;
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #6c757d;
}

.blog-detail-meta i {
    color: #667eea;
}

.blog-category-badge {
    background: #667eea !important;
    color: white !important;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px !important;
    font-weight: 500;
}

.blog-detail-image {
    margin-bottom: 25px;
    text-align: center;
}

.blog-detail-img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.blog-detail-content {
    line-height: 1.8;
}

.blog-excerpt {
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.blog-excerpt p {
    margin: 0;
    font-size: 16px;
    color: #495057;
}

.blog-full-content {
    font-size: 15px;
    color: #333;
}

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

.blog-full-content h2 {
    color: #2c3e50;
    margin: 25px 0 15px 0;
    font-size: 24px;
    font-weight: 600;
}

.blog-full-content h3 {
    color: #34495e;
    margin: 20px 0 12px 0;
    font-size: 20px;
    font-weight: 600;
}

.blog-full-content h4 {
    color: #495057;
    margin: 15px 0 10px 0;
    font-size: 18px;
    font-weight: 500;
}

.blog-full-content ul, .blog-full-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.blog-full-content li {
    margin-bottom: 8px;
}

.blog-full-content strong {
    color: #2c3e50;
    font-weight: 600;
}
