/* =========================================
   1. GENEL AYARLAR & RENK PALETİ
   ========================================= */
:root {
    --primary-color: #00a8cc; /* Canlı Turkuaz/Mavi (Ana Renk) */
    --primary-dark: #007ea7;  /* Hover durumları için koyu mavi */
    --text-dark: #0f2b46;     /* Koyu Lacivert (Başlıklar için) */
    --bg-light: #eefbfd;      /* Çok açık mavi arka plan */
    --white: #ffffff;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: #555;
    line-height: 1.6;
    background-color: #f9f9f9;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
}

/* Renk Yardımcı Sınıfları */
.text-primary-custom { color: var(--primary-color) !important; }
.bg-primary-custom { background-color: var(--primary-color) !important; }
.bg-light-custom { background-color: var(--bg-light) !important; }
.ls-1 { letter-spacing: 1px; }

/* =========================================
   2. BUTONLAR & NAVBAR
   ========================================= */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-dark {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background-color: var(--text-dark);
    color: #fff;
}

.navbar-brand {
    font-size: 24px;
}

/* =========================================
   3. HERO SECTION (ANA GİRİŞ)
   ========================================= */
.hero-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #eefbfd 100%);
    min-height: 85vh;
}

.hero-img {
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 168, 204, 0.15);
    border: 5px solid #fff;
}

/* =========================================
   4. ACİL DURUM BANNER (KIRMIZI)
   ========================================= */
.emergency-banner {
    background-color: #d9534f !important; /* Acil Kırmızı */
    color: #ffffff !important;
}

.emergency-banner h5, 
.emergency-banner span {
    color: #ffffff !important;
}

/* Banner içindeki telefon numarası linki */
.emergency-banner a {
    color: #ffffff !important;
    font-weight: 800 !important;
    text-decoration: underline !important;
}

/* =========================================
   5. HİZMET KARTLARI
   ========================================= */
.service-card {
    background: #fff;
    border: 1px solid #eefbfd;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 168, 204, 0.1) !important;
    border-color: var(--primary-color);
}

.icon-box {
    width: 80px;
    height: 80px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: var(--primary-color);
    transition: 0.3s;
}

.service-card:hover .icon-box {
    background-color: var(--primary-color);
    color: #fff;
}

/* =========================================
   6. İLETİŞİM BÖLÜMÜ (KOYU ZEMİN DÜZELTMELERİ)
   ========================================= */
/* Başlıkları Beyaz Yap */
#iletisim h2, 
#iletisim h5, 
#iletisim h6 {
    color: #ffffff !important;
}

/* Metinleri ve Linkleri Açık Gri Yap */
#iletisim p, 
#iletisim a:not(.btn) {
    color: #cccccc !important;
}

/* Bilgi Kutularına Cam Efekti Ver */
#iletisim .rounded {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* İkonları Parlat */
#iletisim .icon {
    color: var(--primary-color) !important;
    text-shadow: 0 0 10px rgba(0, 168, 204, 0.3);
}

/* =========================================
   7. WHATSAPP & MOBİL
   ========================================= */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20b858;
    color: white;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.7;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.6); opacity: 0; }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
}