body {
    font-family: 'Roboto', sans-serif; /* Daha modern bir font */
    line-height: 1.6;
    color: #333;
    background-color: #f4f7f6; /* Hafif kirli beyaz arka plan */
}

/* Navigasyon Çubuğu Stilleri */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Hafif gölge */
}

.navbar-brand {
    font-weight: bold;
    color: #FF0000 !important; /* Ana marka rengi */
}

/* Hero Alanı Stilleri */
.jumbotron {
    background: linear-gradient(#ff0000, rgba(0, 86, 179, 0.7)), url(img/klima_slide.jpg) no-repeat center center;
    background-size: cover;
    color: white;
    padding: 16rem 2rem; /* Üst ve alt padding değerini artırdım */
    border-radius: 0; /* Tam genişlik görünümü için */
    margin-bottom: 0; /* Alt boşluğu kaldır */
}

.jumbotron h1 {
    font-weight: 700;
    font-size: 3rem;
}

.jumbotron .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.jumbotron .btn-primary {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #FF0000;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.jumbotron .btn-primary:hover {
    background-color: #FF0000;
    color: #ffffff;
    border-color: #FF0000;
}

/* Hizmet Kartları Stilleri */
#services .card {
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px; /* Yuvarlak köşeler */
}

#services .card:hover {
    transform: translateY(-10px); /* Hover efekti */
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 10px; /* Görsel için yuvarlak köşeler */
    border-top-right-radius: 10px;
}

.card-title {
    color: #FF0000; /* Ana renk */
    font-weight: bold;
}

/* Hakkımızda Alanı */
#about {
    padding: 60px 0;
    background-color: #ffffff; /* Temiz beyaz arka plan */
}

#about img {
    border-radius: 10px; /* Yuvarlak köşeler */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* İletişim Formu Stilleri */
#contact {
    padding: 60px 0;
    background-color: #f4f7f6;
}

#contact form {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

#contact .form-control {
    border-radius: 5px;
}

#contact .btn-primary {
    background-color: #FF0000;
    border-color: #FF0000;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
}

#contact .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Footer Stilleri */
footer {
    background-color: #343a40; /* Koyu arka plan */
    color: white;
    padding: 20px 0;
}

/* Öne Çıkan Özellikler Stilleri */
#features .feature-item {
    padding: 25px; /* İç boşluğu biraz artır */
    background-color: #ffffff;
    border-radius: 8px; /* Kenar yuvarlaklığını standart kartlara benzet */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Daha belirgin bir kart gölgesi */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex; /* Flexbox ile içerik düzeni */
    flex-direction: column; /* İçerikleri dikeyde sırala */
    align-items: center; /* İçerikleri yatayda ortala */
    text-align: center; /* Metinleri ortala */
}

#features .feature-item:hover {
    transform: translateY(-5px); /* Hover efektini biraz küçült */
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 2.8rem; /* İkon boyutunu hafif ayarla */
    color: #FF0000;
    margin-bottom: 20px; /* İkon ve başlık arasını aç */
    display: block;
}

#features .feature-item h5 {
    font-size: 1.15rem; /* Başlık fontunu biraz büyüt */
    font-weight: bold;
    margin-bottom: 10px;
    color: #343a40;
}

#features .feature-item p {
    font-size: 0.9rem;
    color: #6c757d; /* Açıklama metni rengini biraz aç */
}

/* Yeni Blog Kart Stilleri */
#blog .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#blog .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15) !important; /* Daha belirgin hover gölgesi */
}

.blog-card-img {
    height: 200px; /* Kart görsel yüksekliği */
    object-fit: cover; /* Görselin alanı kaplaması */
}

#blog .card-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #FF0000; /* Ana marka rengi */
    margin-bottom: 0.75rem;
}

#blog .card-text {
    font-size: 0.85rem;
    color: #555;
    flex-grow: 1; /* Paragrafın kalan alanı doldurmasını sağlar */
    margin-bottom: 1rem;
}

#blog .btn-outline-primary {
    font-size: 0.8rem;
    font-weight: bold;
    padding: 0.3rem 0.8rem;
}

#blog .btn-outline-primary i {
    vertical-align: middle;
}

/* Mobil Arama Çubuğu Stilleri */
.mobile-call-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #FF0000; /* Tema mavisi */
    padding: 12px 0;
    text-align: center;
    z-index: 1030; /* Navbardan daha üstte olması için (Bootstrap navbar z-index: 1030) */
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
}

.mobile-call-bar a {
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
}

.mobile-call-bar a i {
    margin-right: 8px;
} 

.btn-outline-primary {
    color: #FF0000;
    border-color: #FF0000;
}

.btn-primary {
    color: #fff;
    background-color: #FF0000;
    border-color: #FF0000;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #FF0000;
    border-color: #FF0000;
}