:root {
    --primary-color: #0077be;    /* Koyu mavi */
    --secondary-color: #00a6fb;  /* Açık mavi */
    --accent-color: #003d5b;     /* Lacivert */
    --light-color: #e6f3ff;      /* Açık mavi arka plan */
}

/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    position: relative;
}

header {
    background-color: var(--primary-color);
    position: fixed;
    width: 100vw;
    max-width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    margin: 0;
    padding: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0.5rem 2rem;
}

.logo {
    padding: 0.5rem 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    mix-blend-mode: multiply;
    background-color: transparent;
}

.logo h1 {
    color: white !important;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.2;
    opacity: 1 !important;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.burger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

.menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
}

/* Menu linklerinin görünürlüğünü garanti altına almak için */
.menu a {
    color: white !important; /* Her durumda beyaz kalsın */
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    opacity: 1 !important; /* Her durumda görünür kalsın */
}

.menu a:hover {
    background-color: var(--secondary-color);
}

.hero {
    position: relative;
    color: white;
    padding: 0;
    overflow: hidden;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: margin-top 0.3s ease;
    margin-top: 0;
}

.hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1;
    pointer-events: none;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    margin-right: 10%;
    max-width: 500px;
    background: rgba(0, 0, 0, 0.7);
    padding: 3rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

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

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.services {
    padding: 4rem 2rem;
    background-color: var(--light-color);
}

.services h3 {
    text-align: center;
    color: var(--accent-color);
    margin-bottom: 3rem;
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 1.5rem;
    font-weight: 600;
}

.services h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Masaüstü için 3 sütun */
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

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

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    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 h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.3;
}

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

/* Tablet için responsive */
@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 sütun */
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.8rem;
    }
}

/* Mobil için responsive */
@media (max-width: 576px) {
    .services {
        padding: 2rem 1rem;
    }

    .services h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        padding-bottom: 1.2rem;
    }

    .services h3::before {
        font-size: 0.8rem;
        top: -0.8rem;
    }

    .services h3::after {
        width: 60px;
        height: 3px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .service-card {
        padding: 1.2rem;
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-areas: 
            "icon title"
            "icon description";
        gap: 0.8rem 1.2rem;
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

    .service-icon {
        grid-area: icon;
        width: 45px;
        height: 45px;
        margin: 0;
        align-self: center;
        background: var(--primary-color);
        box-shadow: 0 2px 6px rgba(0,119,190,0.2);
    }

    .service-icon i {
        font-size: 1.3rem;
    }

    .service-card h4 {
        grid-area: title;
        font-size: 1.1rem;
        margin: 0;
        color: var(--accent-color);
        font-weight: 600;
        line-height: 1.3;
        text-align: left;
    }

    .service-card p {
        grid-area: description;
        font-size: 0.9rem;
        margin: 0;
        line-height: 1.4;
        color: #555;
        opacity: 0.95;
        text-align: left;
    }

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

/* Why Us Section */
.why-us {
    padding: 4rem 2rem;
    background-color: var(--light-color);
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Service Areas */
.service-areas {
    padding: 5rem 2rem;
    background: var(--light-color);
}

.service-areas h3 {
    text-align: center;
    color: var(--accent-color);
    margin-bottom: 3rem;
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.service-areas h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

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

.areas-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 sütun */
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.area-card {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--primary-color);
    transition: height 0.3s ease;
}

.area-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.area-card:hover::before {
    height: 100%;
}

.area-card h4 {
    color: var(--accent-color);
    font-size: 0.95rem;
    margin: 0;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.area-card:hover h4 {
    color: var(--primary-color);
}

/* Tablet için responsive */
@media (max-width: 992px) {
    .areas-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 sütun */
    }
}

/* Küçük tablet için */
@media (max-width: 768px) {
    .areas-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 sütun */
    }
}

/* Mobil için responsive */
@media (max-width: 576px) {
    .service-areas {
        padding: 3rem 1rem;
    }

    .service-areas h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 sütun */
        gap: 0.8rem;
    }

    .area-card {
        padding: 0.8rem;
    }

    .area-card h4 {
        font-size: 0.9rem;
    }
}

/* Footer */
footer {
    background-color: var(--accent-color);
    color: white;
    padding: 3rem 2rem 1rem;
    margin-bottom: 0; /* Varsayılan olarak margin yok */
}

/* Sadece anasayfada butonlar için margin ekle */
body.index-page footer {
    margin-bottom: 44.8px; /* Sabit butonlar için anasayfada margin ekle */
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    padding: 0.5rem;
    border-radius: 6px;
}

/* Sadece link olan itemlar için hover efekti */
a.footer-contact-item {
    text-decoration: none;
    transition: all 0.3s ease;
}

a.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.footer-contact-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.footer-contact-item span {
    font-size: 0.95rem;
}

/* Mobil için düzenleme */
@media (max-width: 768px) {
    .footer-contact-item {
        padding: 0.8rem;
    }

    .footer-contact-item span {
        font-size: 0.9rem;
    }
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    line-height: 2;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Navigation */
@media (max-width: 1120px) {
    .burger-menu {
        display: flex;
    }

    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--primary-color);
        padding: 1rem;
        gap: 0;
        z-index: 999;
    }

    .menu.active {
        display: flex;
    }

    .menu li {
        width: 100%;
    }

    .menu a {
        display: block;
        padding: 1rem;
        text-align: center;
        border-radius: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .menu li:last-child a {
        border-bottom: none;
    }

    /* Burger Menu Animation */
    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .logo-img {
        height: 35px;
    }
    
    .logo h1 {
        font-size: 1rem;
    }

    .hero {
        height: calc(100vh - 60px);
        padding: 1rem;
        justify-content: center;
    }

    .hero-content {
        margin-right: 0;
        margin-top: 2rem;
        padding: 2rem;
    }

    /* Menü açıkken banner'ı aşağı it */
    .menu.active ~ .hero {
        transform: translateY(250px);
    }
}

/* Main Content Padding for Fixed Header - Ana sayfa dışındaki sayfalar için */
main {
    position: relative;
    padding-top: 60px; /* Header yüksekliği kadar padding ekle */
}

main > section:first-child:not(.hero) {
    padding-top: 70px; /* Hero olmayan ilk bölümler için padding ekle */
}

/* Contact Button Styles */
.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
    width: 100%;
}

.contact-button a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.contact-button.phone a {
    background-color: var(--primary-color);
    color: white;
}

.contact-button.whatsapp a {
    background-color: #25D366;
    color: white;
}

.contact-button.phone a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.contact-button.whatsapp a:hover {
    background-color: #20bd59;
    transform: translateY(-2px);
}

.contact-button i {
    font-size: 1.2rem;
}

.fixed-buttons {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    justify-content: space-between;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(100%);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.fixed-buttons.visible {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

/* Slide içerik stilleri */
.slide-content {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    margin-bottom: 120px;
}

.slide-content.active {
    display: block;
    opacity: 1;
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    line-height: 1.5;
}

/* Hero content animasyonu için */
.hero-content h2, 
.hero-content p {
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.hero-content.changing h2, 
.hero-content.changing p {
    transform: translateY(20px);
    opacity: 0;
}

/* Smooth Scroll için */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px; /* Header yüksekliği kadar padding */
}

/* Active menü item için stil */
.menu a.active {
    background-color: var(--secondary-color);
}

/* Scroll indicator için (opsiyonel) */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--secondary-color);
    z-index: 1001;
    transition: width 0.3s ease;
}

.about-us {
    padding: 5rem 2rem;
    background: #fff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content h3 {
    color: var(--accent-color);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.about-text {
    color: #444;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-text .main-text {
    font-size: 1.1rem;
    color: #333;
}

.features-list {
    margin: 2rem 0;
    display: grid;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

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

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-text {
    font-weight: 500;
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* Mobil için responsive düzenleme */
@media (max-width: 768px) {
    .about-us {
        padding: 3rem 1rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .about-text .main-text {
        font-size: 1rem;
    }

    .about-image {
        order: -1; /* Mobilde resmi üste al */
        max-height: 300px;
    }

    .features-list {
        margin: 1.5rem 0;
    }

    .feature-item {
        font-size: 0.9rem;
    }

    .cta-text {
        font-size: 1rem;
    }
}

/* Scroll animasyonları için temel stiller */
.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease;
}

.fade-in-left.appear, 
.fade-in-right.appear {
    opacity: 1;
    transform: translateX(0);
}

/* Hakkımızda bölümü için mevcut stillere eklemeler */
.about-content {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease;
}

.about-content.appear,
.about-image.appear {
    opacity: 1;
    transform: translateX(0);
}

/* Feature itemlar için kademeli animasyon */
.feature-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.feature-item.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Her feature-item için farklı gecikme */
.feature-item:nth-child(1) { transition-delay: 0.2s; }
.feature-item:nth-child(2) { transition-delay: 0.4s; }
.feature-item:nth-child(3) { transition-delay: 0.6s; }

.footer-contact h4,
.footer-links h4 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
    display: inline-block;
}

.footer-contact h4::after,
.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-contact:hover h4::after,
.footer-links:hover h4::after {
    width: 100%;
}

/* Mobil için düzenleme */
@media (max-width: 768px) {
    .footer-contact h4,
    .footer-links h4 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        padding-bottom: 0.6rem;
    }

    .footer-contact h4::after,
    .footer-links h4::after {
        height: 2px;
    }
}

/* Area sayfası için stiller */
.area-hero {
    background: var(--accent-color);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 0; /* Hero'nun margin'ini kaldırdık çünkü breadcrumb var */
    line-height: 1; /* Line height'ı azalttık */
}

.area-hero h1 {
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.area-image {
    margin: 0; /* Tüm marginleri kaldır */
    padding: 0; /* Tüm padingleri kaldır */
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    display: block; /* Block element olarak ayarla */
}

.area-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block; /* Resmin altındaki boşluğu kaldır */
}

.area-content {
    padding: 2rem 2rem 4rem; /* Alt padding'i artırdık */
    background: #f8f9fa;
}

.area-content .container {
    max-width: 1000px;
    margin: 0 auto;
}

.service-article {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.service-article h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.service-article h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.service-article p {
    color: #444;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Breadcrumb stili güncelleme */
.breadcrumb {
    background: #f8f9fa;
    padding: 0.8rem 2rem;
    border-bottom: 1px solid #eee;
    margin-top: 60px; /* Header'a takılmaması için header yüksekliği kadar margin ekledik */
    position: relative;
    z-index: 100; /* Header'dan düşük ama diğer içeriklerden yüksek z-index */
}

.breadcrumb .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb i {
    color: #666;
    font-size: 0.8rem;
}

.breadcrumb span {
    color: #666;
}

/* Sabit butonlar için stiller */
.fixed-buttons {
    display: none; /* Varsayılan olarak gizli */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    justify-content: space-between;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fixed-buttons.visible {
    display: flex;
    opacity: 1;
}

.fixed-buttons a {
    font-family: "Arial", sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 0;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 50%;
}

.fixed-buttons .call-button {
    background: var(--primary-color);
}

.fixed-buttons .whatsapp-button {
    background: #25D366;
}

.fixed-buttons i {
    font-size: 16px;
}

/* Footer için boşluk */
footer {
    margin-bottom: 0; /* Varsayılan olarak margin yok */
}

/* Sabit butonların olduğu index.php sayfası için margin ekle */
body.index-page footer {
    margin-bottom: 44.8px; /* Sabit butonlar için anasayfada margin ekle */
}

/* Area content image stili */
.area-content-image {
    margin: 2rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.area-content-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Mobil için düzenleme */
@media (max-width: 768px) {
    .area-content-image {
        margin: 1.5rem 0;
        max-height: 300px;
    }
}

/* Kompakt servis kartları için stil */
.services.compact {
    padding: 3rem 2rem;
    background: #f8f9fa;
}

.services.compact .service-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.services.compact .service-card {
    padding: 1.5rem;
    text-align: center;
}

.services.compact .service-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
}

.services.compact .service-icon i {
    font-size: 1.5rem;
}

.services.compact h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.services.compact p {
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Tablet için responsive */
@media (max-width: 992px) {
    .services.compact .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobil için responsive */
@media (max-width: 576px) {
    .services.compact {
        padding: 2rem 1rem;
    }

    .services.compact .service-grid {
        grid-template-columns: 1fr;
    }

    .services.compact .service-card {
        padding: 1rem;
    }
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Masaüstü için 3 sütun */
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Tablet için responsive düzenleme */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablet için 2 sütun */
        gap: 1.5rem;
        padding: 1.5rem;
    }
}

/* Mobil için responsive düzenleme */
@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr; /* Mobil için tek sütun */
        gap: 1.2rem;
        padding: 1rem;
    }

    .blog-card {
        margin-bottom: 1rem;
    }

    .blog-image {
        height: 200px; /* Mobilde resim yüksekliğini azalt */
    }

    .blog-content {
        padding: 1.2rem;
    }

    .blog-content h2 {
        font-size: 1.2rem;
    }

    .blog-meta {
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .blog-hero {
        padding: 3rem 1rem;
    }

    .blog-hero h1 {
        font-size: 2rem;
    }

    .blog-hero p {
        font-size: 1rem;
    }
}

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

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

/* Blog sayfası stilleri */
.blog-hero {
    background: linear-gradient(rgba(0, 61, 91, 0.9), rgba(0, 61, 91, 0.9)), url('images/blog-hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.blog-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.blog-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.blog-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

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

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

.blog-content {
    padding: 1.5rem;
    background: white;
}

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

.blog-content h2 a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.blog-meta .date {
    color: var(--primary-color);
}

.blog-meta .categories {
    background: var(--light-color);
    padding: 2px 8px;
    border-radius: 4px;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Pagination */
.pagination {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.pagination a {
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pagination a.active {
    background: var(--primary-color);
    color: white;
}

.pagination a:hover:not(.active) {
    background: var(--light-color);
}

/* ==========================================================================
   Blog Detay Sayfası Stilleri
   ========================================================================== */

/* Ana Container */
.blog-detail-content {
    position: relative;
    z-index: 1;
    padding: 2rem 2rem 4rem;
    background: #f8f9fa;
    margin-top: 0;
}

.blog-detail-content .container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Blog Post */
.blog-post {
    position: relative;
    z-index: 2;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

/* Başlık Alanı */
.blog-post .post-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative !important;
}

.blog-post .post-header h1 {
    color: var(--accent-color);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Meta Bilgileri */
.blog-post .post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: #666;
    font-size: 0.9rem;
}

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

/* Öne Çıkan Görsel */
.blog-post .post-image {
    margin: 2rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-post .post-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* İçerik Alanı */
.blog-post .post-content {
    line-height: 1.8;
    color: #444;
    font-size: 1.1rem;
}

.blog-post .post-content h2 {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
}

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

.blog-post .post-content ul,
.blog-post .post-content ol {
    margin: 1rem 0 1.5rem 2rem;
}

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

/* Breadcrumb Düzenlemesi */
.breadcrumb + .blog-detail-content {
    margin-top: 0;
}

/* Mobil Düzenlemeler */
@media (max-width: 768px) {
    /* Container */
    .blog-detail-content {
        padding: 1rem 1rem 3rem;
    }
    
    /* Blog Post */
    .blog-post {
        padding: 1.5rem;
        margin-bottom: 60px;
    }
    
    /* Başlık */
    .blog-post .post-header h1 {
        font-size: 1.8rem;
    }
    
    /* Meta Bilgileri */
    .blog-post .post-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    /* İçerik */
    .blog-post .post-content {
        font-size: 1rem;
    }
}

/* Blog post meta bilgileri için stiller */
.post-meta {
    display: flex;
    flex-direction: column;
    margin: 1rem 0;
    width: 100%;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

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

.post-date i {
    color: var(--primary-color);
}

.post-views {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 0.9rem;
}

.post-views i {
    margin-right: 5px;
    color: #999;
}

/* Kategori etiketleri için ek stiller */
.more-tag {
    background: var(--primary-color);
    color: white;
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
}

.more-tag:hover {
    background: var(--primary-color) !important;
    color: white !important;
}

.post-categories {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem; /* Kategorileri ayrı satırda göster */
    width: 100%; /* Tam genişlik */
}

.category-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.8rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    color: #495057;
    font-size: 0.85rem;
    cursor: default; /* İmleci normal hale getir */
}

.category-tag i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* Hover efektlerini kaldır */
.category-tag:hover {
    background: #f8f9fa;
    border-color: #e9ecef;
    color: #495057;
    transform: none;
    box-shadow: none;
}

.category-tag:hover i {
    color: var(--primary-color);
    transform: none;
}

/* Mobil için düzenleme */
@media (max-width: 768px) {
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .post-categories {
        margin-top: 0.5rem;
    }
}

/* Blog kartı devamını oku butonu */
.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--light-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    border: 1px solid var(--primary-color);
}

.read-more-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.read-more-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 119, 190, 0.2);
}

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

.read-more-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 119, 190, 0.2);
}

/* Blog kartı içeriği için ek düzenlemeler */
.blog-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.blog-content p {
    color: #666;
    line-height: 1.6;
    margin: 1rem 0;
    flex-grow: 1;
}

/* Mobil için düzenleme */
@media (max-width: 768px) {
    .read-more-btn {
        width: 100%;
        justify-content: center;
        padding: 0.8rem;
    }
}

/* İş Örnekleri Grid Stili */
.work-examples {
    padding: 4rem 2rem;
    background: var(--light-color);
}

.work-examples h3 {
    text-align: center;
    color: var(--accent-color);
    margin-bottom: 3rem;
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.work-examples h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.work-item {
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.work-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

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

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

.work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Modal Stili */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
    justify-content: center;
    align-items: center;
}

.image-modal.show {
    display: flex;
    opacity: 1;
}

.modal-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    max-width: 1000px;
}

.modal-content {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    display: block;
    border-radius: 5px;
}

.modal-caption {
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 1.2rem;
    width: 100%;
    margin-top: 10px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #bbb;
}

/* Mobil için Modal düzenlemeleri */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        max-height: 75vh;
    }
    
    .modal-close {
        right: 1rem;
        top: 1rem;
    }
    
    .modal-caption {
        padding: 0.5rem;
        font-size: 1rem;
        width: 90%;
    }
}

/* Work Grid için Mobil Düzenlemeler */
@media (max-width: 768px) {
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .work-item {
        height: 150px;
    }
    
    .work-overlay {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
}

.post-views {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    color: #666;
    font-size: 14px;
}

.post-views i {
    margin-right: 5px;
    color: #999;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.post-meta {
    display: flex;
    flex-direction: column;
    margin: 1rem 0;
    width: 100%;
}

/* Çerez onay bildirimi */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out, bottom 0.3s ease;
}

/* Çerez bildirimi göründüğünde pozisyona geçmesi için */
.cookie-consent.show {
    transform: translateY(0);
}

.cookie-text {
    flex: 1;
    min-width: 280px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-accept {
    background-color: var(--primary-color);
    color: white;
}

.cookie-accept:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.cookie-decline {
    background-color: #f8f9fa;
    color: #333;
}

.cookie-decline:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
}

.cookie-policy {
    color: var(--secondary-color);
    text-decoration: underline;
    margin-left: 0.5rem;
}

/* Mobile düzenlemeler */
@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }
    
    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}

/* Çerez politikası sayfası stilleri */
.policy-container {
    max-width: 900px;
    margin: 100px auto 50px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.content-wrapper {
    padding: 1rem;
}

.policy-container h1 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    border-bottom: 2px solid var(--light-color);
    padding-bottom: 1rem;
}

.last-updated {
    text-align: right;
    font-style: italic;
    color: #777;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 10px;
}

.policy-section h3 {
    color: var(--secondary-color);
    margin: 1.5rem 0 0.8rem;
    font-size: 1.2rem;
}

.policy-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #333;
}

.policy-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

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

.policy-section a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px dotted;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .policy-container {
        margin: 80px auto 30px;
        padding: 1rem;
    }
    
    .policy-container h1 {
        font-size: 1.7rem;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .policy-section h3 {
        font-size: 1.1rem;
    }
}

/* Meta Bilgileri */
.post-meta-detail {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    margin: 1rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.post-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.post-date, .post-views {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.95rem;
}

.post-date i, .post-views i {
    color: var(--primary-color);
    font-size: 1rem;
}

.post-categories {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 1rem;
}

.post-meta-detail .category-tag {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    background: var(--light-color);
    border: none;
    transition: all 0.3s ease;
}

.post-meta-detail .category-tag:hover {
    background: var(--primary-color);
    color: white;
}

.post-meta-detail .category-tag:hover i {
    color: white;
}
