:root {
    /* Primary Colors */
    --primary-color: #26283b; /* Deep Navy Blue */
    --secondary-color: #455061; /* Royal Blue */
    --accent-color: #d88211; /* Gold */
    --accent-color-2: #e29d64; /* Turquoise */
    
    /* Neutral Colors */
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #424242;
    
    /* Text Colors */
    --text-primary: #212121;
    --text-secondary: #757575;
    --text-light: #ffffff;
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
}

/* Header Styles */
.navbar {
    padding: 1rem 0;
}

.navbar-brand img {
    max-height: 50px;
}

.nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    padding-top: 80px; /* Account for fixed header */
    background-color: var(--light-gray);
}

.hero-section h1 {
    color: var(--primary-color);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Card Styles */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

/* Section Spacing */
section {
    padding: 5rem 0;
}

/* Section Titles */
.section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Services Section */
.services-section .card {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.services-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.services-section .card-body {
    padding: 2rem;
}

.services-section .card-title {
    color: var(--primary-color);
    margin: 1rem 0;
}

.services-section .fa-3x {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.services-section .card:hover .fa-3x {
    transform: scale(1.1);
}

/* Why Us Section */
.why-us-section {
    background-color: var(--light-gray);
}

.feature-box {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.feature-box h3 {
    color: var(--primary-color);
    margin: 1rem 0;
}

.feature-box p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.feature-box .fa-3x {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.feature-box:hover .fa-3x {
    transform: scale(1.1);
}

/* References Section */
.references-section {
    background-color: white;
}

/* Client Logos */
.client-logo {
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.client-logo img {
    max-height: 80px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Testimonials */
.testimonials {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.testimonial-item {
    padding: 2rem;
}

.testimonial-content {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    position: relative;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.testimonial-author h5 {
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial-author p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-section img {
        margin-top: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-box {
        margin-bottom: 1rem;
    }
    
    .client-logo img {
        max-height: 60px;
    }
    
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Blog Section */
.blog-section {
    background-color: var(--light-gray);
}

/* Blog Card */
.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Blog Image */
.blog-image {
    position: relative;
    overflow: hidden;
}

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

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

/* Blog Date */
.blog-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    line-height: 1;
}

.blog-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.blog-date .month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Blog Content */
.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.blog-meta span {
    margin-right: 1rem;
}

.blog-meta i {
    margin-right: 0.3rem;
    color: var(--primary-color);
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.read-more i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .blog-image img {
        height: 180px;
    }
    
    .blog-content {
        padding: 1.25rem;
    }
    
    .blog-title {
        font-size: 1.2rem;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.cta-wrapper {
    padding: 3rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.cta-section .btn-primary {
    background-color: white;
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    font-weight: 500;
}

.cta-section .btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: white;
}

.footer-logo {
    max-height: 50px;
}

.footer-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--accent-color);
    margin-right: 1rem;
    margin-top: 0.3rem;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cta-wrapper {
        padding: 2rem;
        text-align: center;
    }
    
    .cta-section .btn-primary {
        margin-top: 1rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .copyright {
        text-align: center;
    }
}

/* İletişim Sayfası Stilleri */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.breadcrumb {
    justify-content: center;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* İletişim Bilgileri Kartları */
.contact-info-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.contact-info-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.contact-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-info-card p {
    color: var(--text-color);
    margin-bottom: 0;
}

/* İletişim Formu */
.contact-form-wrapper {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form .form-label {
    font-weight: 500;
    color: var(--dark-color);
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.25);
}

.contact-form .form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-form .form-check-label a:hover {
    text-decoration: underline;
}

/* Harita */
.map-wrapper {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    margin-top: 1.5rem;
}

/* Çalışma Saatleri */
.working-hours-wrapper {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.working-hours-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.working-hours-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.working-hours-card p {
    margin-bottom: 0.5rem;
}

.working-hours-card .text-primary {
    font-weight: 600;
}

/* Responsive Düzenlemeler */
@media (max-width: 991.98px) {
    .page-header {
        padding: 100px 0 40px;
    }

    .page-title {
        font-size: 2rem;
    }

    .contact-form-wrapper,
    .map-wrapper {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 80px 0 30px;
    }

    .page-title {
        font-size: 1.75rem;
    }

    .contact-info-card {
        margin-bottom: 1.5rem;
    }

    .working-hours-card {
        margin-bottom: 1.5rem;
    }
}

/* Hakkımızda Sayfası Stilleri */
.history-section {
    background-color: #fff;
}

.history-content {
    padding-right: 2rem;
}

.history-content .lead {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.history-image img {
    transition: transform 0.3s ease;
}

.history-image:hover img {
    transform: scale(1.02);
}

/* Misyon & Vizyon Kartları */
.mission-vision-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.mission-vision-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.mission-vision-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.mission-vision-card p {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 0;
}

/* Değerler Kartları */
.value-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
    text-align: center;
}

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

.value-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.value-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Ekip Kartları */
.team-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.team-image {
    position: relative;
    overflow: hidden;
}

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

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

.team-content {
    padding: 1.5rem;
    text-align: center;
}

.team-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.team-content .position {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-content .description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-content .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-content .social-links a {
    width: 35px;
    height: 35px;
    background: var(--light-gray);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.team-content .social-links a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Responsive Düzenlemeler */
@media (max-width: 991.98px) {
    .history-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .mission-vision-card {
        padding: 2rem;
    }
    
    .team-image img {
        height: 250px;
    }
}

@media (max-width: 767.98px) {
    .mission-vision-card,
    .value-card {
        margin-bottom: 1.5rem;
    }
    
    .team-image img {
        height: 220px;
    }
}

/* Hizmetler Sayfası Stilleri */
.services-overview {
    background-color: #fff;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
    text-align: center;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--accent-color);
    transform: rotateY(180deg);
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.service-card .read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-card .read-more i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.service-card .read-more:hover {
    color: var(--secondary-color);
}

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

/* Hizmet Detay Bölümü */
.service-detail {
    position: relative;
}

.service-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.05) 0%, rgba(13, 71, 161, 0.05) 100%);
    z-index: 0;
}

.service-content {
    position: relative;
    z-index: 1;
}

.service-content .lead {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.service-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--accent-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.service-image {
    position: relative;
    z-index: 1;
}

.service-image img {
    transition: transform 0.3s ease;
}

.service-image:hover img {
    transform: scale(1.02);
}

/* Responsive Düzenlemeler */
@media (max-width: 991.98px) {
    .service-card {
        margin-bottom: 1.5rem;
    }
    
    .service-content {
        margin-bottom: 2rem;
    }
    
    .service-image {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
}

/* Referanslar Sayfası Stilleri */
.client-logos {
    background-color: #fff;
}

.client-logo {
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.client-logo img {
    max-height: 80px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Başarı Hikayeleri */
.success-story-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.story-image {
    position: relative;
    overflow: hidden;
}

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

.success-story-card:hover .story-image img {
    transform: scale(1.1);
}

.story-content {
    padding: 1.5rem;
}

.story-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.story-category {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.story-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Müşteri Yorumları */
.testimonials {
    background-color: #fff;
}

.testimonial-item {
    padding: 2rem;
}

.testimonial-content {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    position: relative;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.testimonial-author p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Carousel Kontrolleri */
.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

/* Responsive Düzenlemeler */
@media (max-width: 991.98px) {
    .client-logo {
        padding: 1.5rem;
    }
    
    .client-logo img {
        max-height: 60px;
    }
    
    .story-image img {
        height: 200px;
    }
    
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .client-logo {
        padding: 1rem;
    }
    
    .client-logo img {
        max-height: 50px;
    }
    
    .story-image img {
        height: 180px;
    }
    
    .story-content {
        padding: 1.25rem;
    }
    
    .testimonial-item {
        padding: 1rem;
    }
}

/* Blog Sayfası Stilleri */
.blog-content {
    background-color: #fff;
}

/* Blog Post */
.blog-post {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.blog-image {
    position: relative;
    overflow: hidden;
}

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

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

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
    line-height: 1;
}

.blog-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.blog-date .month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.blog-meta span {
    margin-right: 1.5rem;
}

.blog-meta i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.blog-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.widget-title {
    margin-bottom: 1.5rem;
}

.widget-title h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

/* Search Form */
.search-form .input-group {
    border-radius: 5px;
    overflow: hidden;
}

.search-form .form-control {
    border: 1px solid var(--medium-gray);
    padding: 0.75rem 1rem;
}

.search-form .btn {
    padding: 0.75rem 1.5rem;
}

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

.category-list li {
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--medium-gray);
}

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

.category-list a {
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

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

.category-list span {
    background: var(--light-gray);
    color: var(--text-secondary);
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    font-size: 0.8rem;
}

/* Recent Posts */
.recent-post-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--medium-gray);
}

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

.recent-post-image {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 1rem;
}

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

.recent-post-content h5 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.recent-post-content h5 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-content h5 a:hover {
    color: var(--primary-color);
}

.post-date {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Tag Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: var(--light-gray);
    color: var(--text-primary);
    border-radius: 3px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* Pagination */
.pagination {
    margin-top: 3rem;
}

.page-link {
    color: var(--primary-color);
    border: 1px solid var(--medium-gray);
    padding: 0.5rem 1rem;
    margin: 0 0.2rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.page-link:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Responsive Düzenlemeler */
@media (max-width: 991.98px) {
    .blog-image img {
        height: 300px;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-title {
        font-size: 1.3rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .blog-image img {
        height: 250px;
    }
    
    .blog-content {
        padding: 1.25rem;
    }
    
    .blog-title {
        font-size: 1.2rem;
    }
    
    .blog-meta span {
        margin-right: 1rem;
    }
    
    .recent-post-image {
        width: 60px;
        height: 60px;
    }
    
    .recent-post-content h5 {
        font-size: 0.9rem;
    }
}

/* Blog Detay Sayfası Stilleri */
.blog-detail {
    background-color: #fff;
}

/* Blog Featured Image */
.blog-featured-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

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

.blog-featured-image:hover img {
    transform: scale(1.02);
}

/* Blog Meta */
.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

.blog-meta i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Blog Content */
.blog-content {
    color: var(--text-primary);
    line-height: 1.8;
}

.blog-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.blog-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-content ul li {
    margin-bottom: 0.5rem;
}

/* Blog Tags */
.blog-tags h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Share Buttons */
.blog-share h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

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

.share-button.facebook {
    background-color: #3b5998;
}

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

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

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

.share-button:hover {
    transform: translateY(-3px);
    color: #fff;
}

/* Comments Section */
.blog-comments h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.comment-item {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.comment-author {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.comment-meta h5 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.comment-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.comment-content p {
    color: var(--text-primary);
    margin-bottom: 0;
}

/* Comment Form */
.comment-form h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.comment-form .form-control {
    padding: 0.75rem 1rem;
    border: 1px solid var(--medium-gray);
    border-radius: 5px;
}

.comment-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(26, 35, 126, 0.25);
}

.comment-form .form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.comment-form .form-check-label a:hover {
    text-decoration: underline;
}

/* Responsive Düzenlemeler */
@media (max-width: 991.98px) {
    .blog-featured-image img {
        height: 400px;
    }
    
    .blog-content h2 {
        font-size: 1.8rem;
    }
    
    .blog-content h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 767.98px) {
    .blog-featured-image img {
        height: 300px;
    }
    
    .blog-meta {
        gap: 1rem;
    }
    
    .blog-content h2 {
        font-size: 1.6rem;
    }
    
    .blog-content h3 {
        font-size: 1.3rem;
    }
    
    .comment-author {
        flex-direction: column;
        text-align: center;
    }
    
    .comment-avatar {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Çözüm Ortaklarımız Sayfası Stilleri */
.partners-section {
    background-color: #fff;
}

.partner-category-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.partner-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
    text-align: center;
}

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

.partner-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.partner-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-info h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.partner-info p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Düzenlemeler */
@media (max-width: 991.98px) {
    .partner-category-title {
        font-size: 1.6rem;
    }
    
    .partner-logo {
        height: 100px;
    }
}

@media (max-width: 767.98px) {
    .partner-category-title {
        font-size: 1.4rem;
    }
    
    .partner-card {
        padding: 1.5rem;
    }
    
    .partner-logo {
        height: 80px;
    }
    
    .partner-info h4 {
        font-size: 1.2rem;
    }
} 