/* ==========================================================================
   Modül: Kartlar, Bannerlar, Hızlı Hizmet Widget'ları ve Genel Bileşenler
   ========================================================================== */

/* Genel Görsel Kuralları */
img, svg, video {
    max-width: 100%;
    height: auto;
}

/* Batman Hızlı Hizmet Kartları Grid */
.batman-widgets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.25rem;
    margin: 2rem 0;
}

@media (max-width: 575.98px) {
    .batman-widgets-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }
}

.batman-widget-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1.65rem;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px -5px rgba(0, 56, 117, 0.05);
    text-decoration: none !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.batman-widget-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #FA9D1B 0%, #e58c0d 100%);
    border-radius: 20px 0 0 20px;
    transition: width 0.3s ease;
}

.batman-widget-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -10px rgba(0, 56, 117, 0.15);
    border-color: rgba(0, 56, 117, 0.2);
}

.batman-widget-item:hover::before {
    width: 8px;
}

.batman-widget-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #001733 0%, #003875 70%, #0052a3 100%);
    color: #FA9D1B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    box-shadow: 0 8px 18px rgba(0, 56, 117, 0.25);
    transition: transform 0.3s ease;
}

.batman-widget-item:hover .batman-widget-icon {
    transform: scale(1.08) rotate(3deg);
    color: #ffffff;
    background: linear-gradient(135deg, #FA9D1B 0%, #e58c0d 100%);
}

.batman-widget-content {
    display: flex;
    flex-direction: column;
}

.batman-widget-content h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #001733;
    margin: 0 0 4px 0;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.batman-widget-content p {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
    margin: 0;
    line-height: 1.35;
}

/* Batman Tarihi Miras Bandı */
.batman-heritage-banner {
    background: linear-gradient(90deg, rgba(0, 23, 51, 0.92) 0%, rgba(0, 56, 117, 0.82) 60%, rgba(0, 82, 163, 0.5) 100%), url('../images/batman/hasankeyf.jpg') center/cover no-repeat;
    border-radius: 20px;
    padding: 3.5rem 2.5rem;
    color: #ffffff;
    margin: 2.5rem 0;
    position: relative;
    overflow: hidden;
    border-left: 6px solid #FA9D1B;
    box-shadow: 0 15px 35px rgba(0, 31, 66, 0.15);
}

.batman-heritage-content h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.batman-heritage-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.25rem;
    max-width: 750px;
}

/* Batman Medya Grid */
.batman-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.25rem !important;
    margin-top: 1.25rem;
    margin-bottom: 1rem;
}

@media (max-width: 991.98px) {
    .batman-news-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 575.98px) {
    .batman-news-grid {
        grid-template-columns: 1fr !important;
    }
}

.batman-news-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    text-decoration: none !important;
    color: inherit !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.batman-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 56, 117, 0.12);
}

.card-img-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #f1f5f9;
}

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

.card-body-custom {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title-custom {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.card-excerpt {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.card-footer-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
    font-weight: 600;
    color: #003875;
}

/* Custom Icons */
.customIcon { font-style: normal; }
.icon-search:before { content: "\f002"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-screen:before { content: "\f108"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-more-arrow:before { content: "\f061"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-ak-user:before { content: "\f007"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-facebook:before { content: "\f09a"; font-family: "Font Awesome 6 Brands"; font-weight: 400; }
.icon-instagram:before { content: "\f16d"; font-family: "Font Awesome 6 Brands"; font-weight: 400; }
.icon-twitter:before { content: "\e61b"; font-family: "Font Awesome 6 Brands"; font-weight: 400; }
.icon-youtube:before { content: "\f167"; font-family: "Font Awesome 6 Brands"; font-weight: 400; }
.icon-location-pin:before { content: "\f3c5"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-phone:before { content: "\f095"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-fax:before { content: "\f1ac"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-email:before { content: "\f0e0"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-slide-arrow-left:before { content: "\f053"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-calendar:before { content: "\f133"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-dogrusu-ne:before { content: "\f058"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-fikir-proje:before { content: "\f0eb"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-cocuklarimiz-icin:before { content: "\f11b"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-all:before { content: "\f00a"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-microphone:before { content: "\f130"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-photo:before { content: "\f03e"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-play:before { content: "\f04b" !important; font-family: "Font Awesome 6 Free" !important; font-weight: 900; }
.icon-read:before { content: "\f1ea"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-video:before { content: "\f03d"; font-family: "Font Awesome 6 Free"; font-weight: 900; }

/* Custom Scrollbars */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }
