<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Ä°zmir Su Tesisat UstasÄ± - Ã–zel CSS DosyasÄ± */

/* Telefon ikonu Ã§evirme (en gÃ¼Ã§lÃ¼ seÃ§ici ile) */
.fas.fa-phone-alt.rotate-phone,
i.fas.fa-phone-alt.rotate-phone,
.rotate-phone[class*="fa-phone"] {
    display: inline-block !important;
    transform: rotate(90deg) !important;
}

/* YardÄ±mcÄ± SÄ±nÄ±flar */
.text-primary {
    color: #2563eb !important;
}

.bg-primary {
    background-color: #2563eb !important;
}

.text-secondary {
    color: #3b82f6 !important;
}

.bg-secondary {
    background-color: #3b82f6 !important;
}

/* Telefon Ä°konu Sabit DÃ¶ndÃ¼rme */
.fa-phone-alt {
    display: inline-block;
    transform: rotate(90deg);
}

/* Navigasyon MenÃ¼sÃ¼ Aktif Link */
.nav-link.active {
    color: #2563eb !important;
    font-weight: 600 !important;
    position: relative !important;
}

.nav-link.active::after {
    content: "" !important;
    position: absolute !important;
    width: 100% !important;
    height: 3px !important;
    background-color: #2563eb !important;
    bottom: -2px !important;
    left: 0 !important;
}

/* Mobil MenÃ¼ DÃ¼zeltmeleri */
#mobile-nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #242424;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    overflow: hidden;
}

#mobile-nav-menu.active {
    display: block;
}

/* Responsive yardÄ±mcÄ± sÄ±nÄ±flar - Daha gÃ¼Ã§lÃ¼ seÃ§icilerle */
@media (min-width: 768px) {
    /* MasaÃ¼stÃ¼ gÃ¶rÃ¼nÃ¼m (md Ã¼zeri) */
    .desktop-only {
        display: flex !important;
    }
    
    .mobile-only {
        display: none !important;
    }
}

@media (max-width: 767px) {
    /* Mobil gÃ¶rÃ¼nÃ¼m */
    .mobile-only {
        display: flex !important;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    /* Mobil Ã¶ÄŸeler iÃ§in dÃ¼zenlemeler */
    .mobile-only.items-center {
        align-items: center !important;
    }
    
    .mobile-only.justify-between {
        justify-content: space-between !important;
    }
}

/* Header Container Stilleri */
.header-container {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
}

/* Bilgi Ã§ubuÄŸu iÃ§in z-index */
.bg-gray-900.text-white {
    position: relative;
    z-index: 1000;
}

</pre></body></html>