:root {
    --primary-color: #2c3e50;    /* Koyu lacivert - güven ve profesyonellik */
    --secondary-color: #e74c3c;  /* Kırmızı - acil servis ve dikkat çekici */
    --accent-color: #ecf0f1;     /* Açık gri - beyaz eşyaları çağrıştıran temiz görünüm */
    --light-color: #f9f9f9;      /* Beyaza yakın - temizlik ve teknoloji hissi */
    --dark-color: #34495e;       /* Koyu lacivert tonu - profesyonel görünüm */
    --text-color: #2c3e50;       /* Ana metin rengi */
    --text-light: #7f8c8d;       /* Açık metin rengi */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* 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: 'Roboto', 'Open Sans', 'Arial', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    position: relative;
    background-color: var(--light-color);
    min-height: 100vh; /* Tam sayfa yüksekliği */
    display: flex;
    flex-direction: column; /* Dikey düzenleme */
}

/* Header stilleri - daha profesyonel ve tutarlı */
.header {
    background-color: var(--primary-color);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(44, 62, 80, 0.98);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

/* Logo stilleri - daha tutarlı boyut */
.logo {
    display: flex;
    align-items: center;
}

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

.logo img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

/* Navigation menu stilleri - düzeltildi */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 15px;
    margin: 0;
    padding: 0;
    height: 100%;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-end;
}

.nav-menu li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.5rem 5px;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0;
    white-space: nowrap;
}

/* Navigation menu stilleri - alt çizgi düzeltildi */
.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 5px;
    right: 5px;
    width: calc(100% - 10px);
    height: 2px;
    background-color: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

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

.nav-menu li a:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    margin-left: 1rem;
}

/* Burger menü - modernize edilmiş ve temizlenmiş */
.burger-menu {
    display: none;
    width: 45px;
    height: 45px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
    border-radius: 50%;
    padding: 8px;
    background-color: rgba(231, 76, 60, 0.2);
    border: none;
}

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

.burger-menu:hover {
    background-color: rgba(231, 76, 60, 0.3);
    transform: scale(1.05);
}

.burger-menu:hover span {
    background-color: white;
}

.burger-menu.active {
    background-color: rgba(231, 76, 60, 0.4);
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

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

/* Animasyon için slideDown */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Masaüstü için menü stilleri - çakışan tanımları temizliyorum */
@media (min-width: 1121px) {
    .header-nav {
        padding: 0 20px;
    }
    
    .nav-menu {
        display: flex !important;
        flex-direction: row;
        position: static;
        background: transparent;
        box-shadow: none;
        padding: 0;
        overflow: visible;
        height: 100%;
        flex-wrap: nowrap;
        gap: 16px;
    }
    
    .nav-menu li {
        width: auto;
        height: 100%;
        text-align: center;
        white-space: nowrap;
        margin: 0;
    }
    
    .nav-menu li a {
        text-align: center;
        border-bottom: none;
        font-size: 0.85rem;
        padding: 0.5rem 5px;
        display: inline-block;
        width: auto;
        white-space: nowrap;
    }
    
    .nav-menu li a::after {
        left: 5px;
        right: 5px;
        bottom: -2px;
    }
    
    .nav-menu.active {
        animation: none;
    }
    
    .burger-menu {
        display: none !important;
    }
}

/* Responsive mobile ve tablet görünümü */
@media (max-width: 1120px) {
    .burger-menu {
        display: flex;
        width: 45px;
        height: 45px;
        background-color: rgba(231, 76, 60, 0.1);
        border-radius: 50%;
    }
    
    .header-nav {
        padding: 10px 20px;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: auto;
        max-height: 400px;
        flex-direction: column;
        background-color: var(--primary-color);
        padding: 20px;
        gap: 0;
        z-index: 999;
        overflow-y: auto;
        box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }
    
    .nav-menu.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }
    
    .nav-menu li {
        width: 100%;
        height: auto;
        text-align: center;
    }
    
    .nav-menu li a {
        display: block;
        padding: 15px 0;
        text-align: center;
        border-radius: 0;
        font-size: 17px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
    }
    
    .nav-menu li a:hover {
        color: var(--secondary-color);
        background-color: rgba(255,255,255,0.05);
    }
    
    .nav-menu li a::after {
        display: none;
    }
}

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

/* Hero bölümü stilleri */
.hero {
    background-image: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)), url('images/banners/banner.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 0 1rem;
    position: relative;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 0.9rem;
    gap: 0.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Hizmet kartları */
.services {
    background-color: white;
    padding: 5rem 0;
}

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

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: var(--radius-md);
    padding: 2rem;
    background: white;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

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

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Markalar bölümü */
.brands {
    background-color: var(--light-color);
    padding: 4rem 0;
}

.brands-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.brand-item {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 180px;
}

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

.brand-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 50%;
    padding: 1rem;
    border: 1px solid #eaeaea;
    background: #f9f9f9;
    transition: all 0.3s ease;
    box-sizing: content-box;
}

.brand-item:hover img {
    border-color: var(--secondary-color);
    background: white;
    transform: scale(1.05);
}

.brand-item span {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-top: auto;
}

/* Responsive ayarlar */
@media (max-width: 1200px) {
    .brands-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .brands-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .brand-item {
        padding: 1rem;
        height: 150px;
    }
    
    .brand-item img {
        width: 60px;
        height: 60px;
        padding: 0.8rem;
    }
}

@media (max-width: 576px) {
    .brands-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brand-item {
        height: 130px;
    }
    
    .brand-item img {
        width: 50px;
        height: 50px;
        padding: 0.6rem;
    }
}

/* Neden Biz bölümü */
.why-us {
    background-color: white;
    padding: 5rem 0;
}

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

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    position: relative;
}

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

.feature-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px dashed var(--secondary-color);
    border-radius: 50%;
    animation: spin 20s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.feature .count {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--text-light);
}

/* 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 - Daha belirgin görünüm */
.service-areas {
    padding: 5rem 2rem;
    background: #f8f9fa;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.service-areas h3 {
    text-align: center;
    color: #333;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: none;
}

.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(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    background-color: var(--primary-color);
}

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

.area-card h4 {
    color: #333;
    font-size: 1rem;
    margin: 0;
    transition: color 0.3s ease;
    line-height: 1.4;
    font-weight: 600;
}

.area-card:hover h4 {
    color: #fff;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem 0;
    margin-top: auto; /* Alttan otomatik marj */
}

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

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.company-info p {
    margin-bottom: 1rem;
    color: var(--accent-color);
    line-height: 1.7;
}

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

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

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

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

.footer-links a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a i {
    font-size: 0.7rem;
}

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

.footer-contact-item {
    display: none;
}

.footer-contact-item:hover {
    display: none;
}

.footer-contact-item i {
    display: none;
}

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

.footer-bottom p {
    color: var(--accent-color);
    font-size: 0.9rem;
}

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

    .nav-menu {
        display: none; 
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
        max-height: 400px;
        flex-direction: column;
        background-color: rgba(44, 62, 80, 0.97);
        padding: 20px;
        gap: 0;
        z-index: 999;
        overflow-y: auto;
        box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }
    
    .nav-menu.active {
        display: flex; 
        animation: slideDown 0.3s ease forwards;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu li a {
        display: block;
        padding: 15px 20px;
        text-align: center;
        border-radius: 0;
        font-size: 18px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        transition: all 0.3s ease;
    }
    
    .nav-menu li a:hover {
        color: var(--secondary-color);
        background-color: rgba(255,255,255,0.05);
    }
}

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

.nav-menu.active {
    display: flex;
}

.nav-menu li {
    width: 100%;
    text-align: center;
}

.nav-menu li a {
    display: block;
    padding: 15px 20px;
    text-align: center;
    border-radius: 0;
    font-size: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--secondary-color);
    background-color: rgba(255,255,255,0.05);
}

/* 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 */
    flex: 1; /* Ana içeriği genişlet */
}

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

/* Sabit butonlar için düzenlemeler */
.fixed-buttons {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    justify-content: space-between;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    opacity: 1;
    transform: translateY(0%);
}

.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: 10px 0;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 50%;
}

/* Mobil cihazlar için sabit butonlar */
@media (max-width: 768px) {
    .fixed-buttons a {
        padding: 12px 0;
        font-size: 12px;
    }
}

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

    .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: #fff;
    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-content {
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.area-hero-content p {
    margin-top: 1rem;
    color: #333;
    font-size: 1.1rem;
    text-shadow: none;
}

.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;
    min-height: 400px; /* Minimum yükseklik ekleyelim */
    flex-grow: 1; /* Ana içeriğin kullanılabilir alanı doldurmasını sağla */
}

.no-posts-message {
    grid-column: 1 / -1; /* Tüm grid genişliğini kaplar */
    text-align: center;
    padding: 3rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.no-posts-message h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.no-posts-message p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.blog-page main {
    min-height: 60vh; /* Ana içerik minimum yüksekliği */
    display: flex;
    flex-direction: column;
}

/* 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, 30, 60, 0.85), rgba(0, 30, 60, 0.85)), url('images/banners/banner.png');
    background-size: cover;
    background-position: center;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    margin-bottom: 20px; /* Hero ile blog grid arasında boşluk */
    position: relative;
}

.blog-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: white; /* Başlık rengini beyaz olarak belirle */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Okunabilirlik için gölge ekle */
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.blog-hero p {
    font-size: 1.3rem;
    color: white; /* Paragraf rengini beyaz olarak belirle */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); /* Okunabilirlik için gölge ekle */
    position: relative;
    z-index: 2;
}

/* Blog hero kısmına ek karartma katmanı */
.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); /* Hafif karartma ekle */
    z-index: 1;
}

.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(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}


.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 {
    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.5rem;
    flex-wrap: wrap;
}

.accept-cookies, .cookie-decline {
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

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

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

.cookie-decline {
    background-color: #f8f9fa;
    color: #333;
    border: 1px solid #ddd;
}

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

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

.cookie-policy:hover {
    color: var(--primary-color);
}

/* Mobile düzenlemeler */
@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.75rem;
    }
    
    .cookie-consent p {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
        gap: 0.3rem;
        margin-top: 0.3rem;
    }
    
    .accept-cookies, .cookie-decline {
        flex: 1;
        text-align: center;
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }

    .cookie-policy {
        font-size: 0.8rem;
    }
}

/* Ç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;
}

/* Modern UI genel stilleri */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

/* Modern buton stilleri */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    font-size: 1rem;
    gap: 0.5rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.btn:active {
    transform: translateY(0);
}

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

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

.btn-accent {
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--accent-color);
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Modern kart stilleri */
.card {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

/* Container ve grid sistem */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Müşteri yorumları bölümü */
.testimonials {
    background-color: var(--light-color);
    padding: 3rem 0;
}

.testimonials-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.testimonial-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

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

.testimonial-content {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-content::before {
    content: '\201C';
    font-size: 3rem;
    font-family: serif;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: -1.5rem;
    left: -0.5rem;
}

.testimonial-content p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.author-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 2px solid var(--light-color);
}

.author-info h4 {
    color: var(--accent-color);
    font-size: 1rem;
    margin: 0 0 0.2rem 0;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

.testimonial-rating {
    color: #FFD700;
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

@media (max-width: 992px) {
    .testimonials-slider {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-item {
        max-width: 550px;
    }
}

@media (max-width: 576px) {
    .testimonials {
        padding: 2rem 1rem;
    }
    
    .testimonial-item {
        padding: 1.2rem;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
    }
    
    .author-img {
        width: 40px;
        height: 40px;
    }
    
    .author-info h4 {
        font-size: 0.95rem;
    }
    
    .author-info p {
        font-size: 0.8rem;
    }
}

/* SSS Bölümü */
.faq {
    background-color: white;
    padding: 5rem 0;
}

.accordion {
    max-width: 800px;
    margin: 2rem auto 0;
}

.accordion-item {
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--accent-color);
}

.accordion-header {
    background-color: white;
    padding: 1.25rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--radius-sm);
    transition: background-color var(--transition-fast);
}

.accordion-header:hover {
    background-color: var(--accent-color);
}

.accordion-header h3 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.accordion-header i {
    color: var(--secondary-color);
    transition: transform var(--transition-normal);
}

.accordion-content {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.accordion-item.active .accordion-header {
    background-color: var(--accent-color);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
    padding: 1.25rem;
    max-height: 500px;
}

/* İletişim Bölümü */
.contact {
    background-color: white;
    padding: 5rem 0;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--light-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-card i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 0.25rem;
}

.contact-card-content h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.contact-card-content p, 
.contact-card-content a {
    margin: 0;
    color: var(--text-light);
    text-decoration: none;
}

.contact-card-content a:hover {
    color: var(--secondary-color);
}

/* Harita */
.map-container {
    height: 100%;
    min-height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

/* Responsive düzenlemeler */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-container {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .contact-container {
        padding: 0 1rem;
    }
    
    .contact-info {
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.2rem;
    }
    
    .map-container {
        min-height: 300px;
    }
}

/* Footer contact bölümü listesi stilleri */
.footer-contact ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.footer-contact li i {
    color: var(--secondary-color);
    margin-right: 0.8rem;
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Service Detail Sayfası */
.service-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.service-content-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    overflow: hidden;
}

.service-content-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .service-image img,
    .service-content-image img {
        max-width: 100%;
    }
}

/* Service Brands */
.service-brands {
    background-color: var(--light-color);
    padding: 3rem 0;
    margin-top: 3rem;
}

.service-brands h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--accent-color);
    font-size: 1.8rem;
}

.brands-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.brand-item {
    background-color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    text-align: center;
    font-weight: 600;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    color: var(--primary-color);
}

/* Service Hero */
.service-hero {
    width: 100%;
    padding: 3rem 0;
    background-color: var(--light-color);
    margin-bottom: 2rem;
}

.service-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: left;
}

.service-hero-content h1 {
    color: var(--text-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 0.8rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

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

.service-hero-content p {
    color: var(--text-color);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
}

@media (max-width: 768px) {
    .service-hero-content h1 {
        font-size: 2rem;
    }
    
    .service-hero-content p {
        font-size: 1rem;
    }
}

/* Diğer Hizmetlerimiz Bölümü */
.other-services {
    background-color: var(--light-color);
    padding: 4rem 0;
    margin-top: 3rem;
}

.other-services h3 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--text-color);
    font-size: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

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

/* Hizmet kartları için mevcut stillerin detay sayfasında da çalışmasını sağla */
.other-services .service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: var(--radius-md);
    padding: 2rem;
    background: white;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.other-services .service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.other-services .service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.other-services .service-icon i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.other-services .service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    padding-bottom: 0;
}

.other-services .service-card h3::after {
    display: none;
}

.other-services .service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.other-services .btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.other-services .btn-link i {
    transition: transform 0.3s ease;
}

.other-services .btn-link:hover {
    color: var(--secondary-color);
}

.other-services .btn-link:hover i {
    transform: translateX(5px);
}

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

/* Mobil için responsive */
@media (max-width: 576px) {
    .other-services {
        padding: 3rem 1rem;
    }
    
    .other-services h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .other-services .services-grid {
        grid-template-columns: 1fr;
    }
    
    .other-services .service-card {
        padding: 1.5rem;
    }
}

/* Service Areas - Responsive ayarlar */
@media (max-width: 992px) {
    .areas-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 sütun */
    }
}

@media (max-width: 768px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 sütun */
    }
    
    .service-areas {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .service-areas {
        padding: 3rem 1rem;
    }

    .service-areas .section-title h2 {
        font-size: 1.8rem;
    }
    
    .service-areas .section-title p {
        font-size: 0.95rem;
    }

    .areas-grid {
        grid-template-columns: 1fr; /* 1 sütun */
        gap: 1rem;
    }

    .area-card {
        padding: 1rem;
    }

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

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.dropdown-toggle i {
    margin-left: 5px;
    font-size: 12px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 4px;
    padding: 10px 0;
    max-height: 400px;
    overflow-y: auto;
}

.dropdown-content a {
    color: #333;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: #f5f5f5;
    color: var(--primary-color);
}

.dropdown:hover .dropdown-content {
    display: block;
}

@media screen and (max-width: 1120px) {
    .dropdown-content {
        position: static;
        box-shadow: none;
        max-height: none;
        background-color: #f5f5f5;
        overflow-y: visible;
        display: none;
        padding: 0;
    }
    
    .dropdown-content a {
        padding-left: 30px;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    
    .dropdown-toggle i {
        transform: rotate(0);
        transition: transform 0.3s;
    }
    
    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }
}

/* Kompakt hizmet bölgeleri görünümü */
.areas-grid.compact-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
    margin: 0 auto;
}

.areas-grid.compact-view .area-link {
    display: block;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 5px;
    text-align: center;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
}

.areas-grid.compact-view .area-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .areas-grid.compact-view {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .areas-grid.compact-view {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .areas-grid.compact-view {
        grid-template-columns: repeat(2, 1fr);
    }
}
