:root {
    --primary-color: #326295;    /* Koyu mavi - PVC tonu */
    --secondary-color: #5a92c5;  /* Açık mavi */
    --accent-color: #1e3b5a;     /* Lacivert */
    --light-color: #e6f0fa;      /* Açık mavi arka plan */
    --highlight-color: #f5b70d;  /* Altın/sarı vurgu rengi */
}

/* 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;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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));
    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; /* Tam ekran yüksekliği */
    min-height: 500px; /* Minimum yükseklik */
    display: flex;
    align-items: center;
    justify-content: center;
    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.5); /* Biraz daha şeffaf bir overlay */
    z-index: 1;
    pointer-events: none;
}

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

.hero-content {
    text-align: center;
    position: relative; /* absolute yerine relative yapıyoruz */
    width: 90%;
    max-width: 800px;
    color: white;
    z-index: 10;
    padding: 2rem;
    background-color: rgba(30, 59, 90, 0.8);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: 0 auto; /* Ortalama için */
}

.hero h2 {
    font-size: 2.8rem; /* Biraz daha büyük başlık */
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem; /* Biraz daha büyük paragraf */
    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-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid var(--highlight-color);
}

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

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    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: var(--accent-color);
    color: white;
    padding: 3rem 2rem 1rem;
}

.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: 100vh;
        padding: 0;
        transition: transform 0.3s ease;
    }

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

/* Main Content Padding for Fixed Header */
main {
    padding-top: 70px; /* Header yüksekliği kadar padding */
}

/* Contact Button Styles */
.contact-button {
    width: 100%;
}

.contact-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
}

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

.contact-button.whatsapp a {
    background: #25D366; /* WhatsApp yeşili */
    color: white;
}

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

.contact-button.whatsapp a:hover {
    background: #128C7E; /* Koyu WhatsApp yeşili */
    transform: translateY(-2px);
}

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

/* Hover efektleri için animasyon */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.contact-button a:active {
    transform: scale(0.95);
}

/* Butonlar için gölge efekti */
.contact-button a {
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: calc(100% - 4rem);
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.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: 0;
}

.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; /* Başlangıçta gizli, JavaScript ile gösterilecek */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    justify-content: space-between;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.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 - sadece mobil görünümde */
@media (max-width: 768px) {
    body.home-page footer {
        margin-bottom: 44.8px; /* fixed-buttons yüksekliği kadar */
    }
    
    /* Blog ve Area sayfalarında alt boşluk olmayacak */
    body.blog-page footer,
    body.area-page footer,
    body.blog-detail-page footer {
        margin-bottom: 0;
    }
}

/* Sadece mobil görünümde göster, masaüstünde tamamen gizle */
@media (min-width: 769px) {
    .fixed-buttons {
        display: none !important; /* JavaScript tarafından bile gösterilmemesi için !important */
    }
}

/* Mobil görünüm için buton düzenlemesi */
@media (max-width: 768px) {
    .fixed-buttons {
        width: 100%;
        right: 0;
        left: 0;
        bottom: 0;
        border-radius: 0;
    }

    .fixed-buttons a {
        border-radius: 0;
        padding: 12px 0;
        margin-left: 0;
    }
}

/* Area content image stili */
.area-content-image {
    margin: 2rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-height: 400px;
}

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

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

/* 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/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;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

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

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

.post-categories {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.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;
    }
}

/* 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;
    max-width: 100%; /* Taşmayı önle */
}

/* Blog detay sayfası meta bilgileri için özel stiller */
.post-meta-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin: 1rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.post-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.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-end;
}

.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;
}

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

    .post-info {
        width: 100%;
        justify-content: space-between;
    }

    .post-categories {
        width: 100%;
        justify-content: flex-start;
    }
}

/* Örnek İşlerimiz Bölümü İçin Stiller */
.work-examples {
    padding: 4rem 0;
    background-color: var(--light-color);
    text-align: center;
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
}

.work-examples h3 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--accent-color);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

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

.work-slider {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}

.slider-container {
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    padding: 0 10px;
}

.slider-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    transition: transform 0.5s ease;
    padding: 10px 0;
}

.slide-item {
    flex: 0 0 280px;
    min-width: 280px;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 8px;
}

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

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

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

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    color: white;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.slide-overlay span {
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 0;
}

.slider-arrow.next {
    right: 0;
}

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

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

.modal-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.modal-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.modal-caption {
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 1.2rem;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
}

.modal-close:hover {
    transform: scale(1.2);
    color: var(--highlight-color);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .slide-item {
        flex: 0 0 260px;
        min-width: 260px;
        height: 230px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .work-examples h3 {
        font-size: 1.8rem;
    }
    
    .slide-item {
        flex: 0 0 230px;
        min-width: 230px;
        height: 200px;
    }
    
    .slide-overlay span {
        font-size: 1rem;
    }
}
