/* =================================== */
/* 1. Kök Değişkenler (Root Variables) */
/* =================================== */

:root {
    /* Ana Aksan Rengi: Derin Lacivert/Mavi */
    --accent-color: #004d99;
    --accent-color-hover: #003366;
    
    /* Zemin Renkleri */
    --bg-white: #ffffff;
    --bg-light: #f8f9fa; /* Hafif gri */
    --bg-card-darker: #f0f2f5; /* İletişim bölümü ana zemin */
    
    /* Form Stilleri */
    --bg-form-light: var(--bg-white); /* Teklif Formu Zemini */
    --bg-form-input-light: #f8f9fa; /* Form Girdi Zemini */
    
    /* Metin Renkleri */
    --text-primary: #333333;
    --text-secondary: #6c757d;

    /* İletişim Kartı Özel Renkler */
    --phone-color: #0077b5; 
    --phone-color-hover: #006699; 
    --location-color: #5d5d5d; /* Adres için Koyu Gri */
}

/* Genel Sayfa Stilleri */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-white);
}

/* =================================== */
/* 2. Hero Bölümü (page-header) Stilleri */
/* =================================== */

/* Üstten Kesilme Sorunu Çözümü: Yüksek üst boşluk */
.pt-7rem {
    padding-top: 7rem !important; /* ~112px boşluk */
}

.page-header {
    background-color: var(--bg-white);
}

.text-accent {
    color: var(--accent-color) !important;
}

/* Ana CTA Butonu Efekti */
.hover-scale {
    transition: all 0.3s ease;
}

.hover-scale:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 77, 153, 0.4) !important;
}

.btn-accent {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #ffffff;
    font-weight: 600;
}

.btn-accent:hover {
    background-color: var(--accent-color-hover);
    border-color: var(--accent-color-hover);
    color: #ffffff;
}

/* =================================== */
/* 3. İLETİŞİM FORMU (BEYAZ ZEMİN, MAVİ VURGU) */
/* =================================== */

#iletisim {
    background-color: var(--bg-card-darker);
}

/* Harita ve Form Kartları Gölgelendirme */
.col-lg-6 > div.h-100 {
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1) !important;
}

/* Form Kartı (BEYAZ ZEMİN) */
.bg-dark-card {
    background-color: var(--bg-form-light) !important; /* Beyaz */
    border: 1px solid var(--bg-light); 
    color: var(--text-primary); 
}

/* Başlıklar ve Açıklamalar */
.bg-dark-card h3 {
    color: var(--accent-color) !important; /* Mavi Başlık */
}
.bg-dark-card .form-label {
    color: var(--text-primary) !important; 
    font-weight: 500;
}
.bg-dark-card p, .bg-dark-card small {
    color: var(--text-secondary) !important; 
}

/* Form Kontrolleri (Girdiler, Input) */
.form-control {
    background-color: var(--bg-form-input-light); 
    border: 1px solid #ced4da;
    color: var(--text-primary); 
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.form-control:focus {
    background-color: var(--bg-white);
    border-color: var(--accent-color); 
    box-shadow: 0 0 0 0.2rem rgba(0, 77, 153, 0.2); 
    color: var(--text-primary);
}

/* Placeholder Rengi */
.form-control::placeholder {
    color: #adb5bd;
}


/* =================================== */
/* 4. MODERNIZE MAVİ KUTU TASARIMI      */
/* =================================== */

.contact-tile-blue {
    display: flex;
    align-items: center;
    background-color: var(--accent-color); /* #004d99 */
    padding: 25px 20px;
    border-radius: 18px;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 77, 153, 0.2);
    height: 100%;
}

.contact-tile-blue:hover {
    transform: translateY(-8px);
    background-color: var(--accent-color-hover); /* #003366 */
    box-shadow: 0 15px 35px rgba(0, 77, 153, 0.4) !important;
}

/* Kutu İçindeki İkon Yuvası */
.tile-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-tile-blue:hover .tile-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.25);
}

/* Metin Alanı */
.tile-info {
    text-align: left;
}

.tile-info small {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.tile-info span {
    display: block;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
}

/* Mobil Uyumluluk Ayarları */
@media (max-width: 768px) {
    .contact-tile-blue {
        padding: 18px 15px;
    }
    .tile-info span {
        font-size: 0.9rem;
    }
}


/* =================================== */
/* MES TENTE - ENLARGED CONTACT BAR    */
/* =================================== */

.contact-bar-section {
    /* Navbar'dan daha fazla kaçmak için boşluğu artırdık */
    padding-top: clamp(180px, 20vh, 220px) !important; 
    padding-bottom: 50px;
    background-color: var(--bs-body-bg);
    display: block;
    width: 100%;
}

.contact-container-custom {
    max-width: 1300px; /* Biraz daha geniş bir alan */
    margin: 0 auto;
    padding: 0 20px;
}

.contact-bar-flex {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Kartlar arası boşluk bir tık arttı */
}

.contact-bar-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 18px 25px; /* İç boşluk büyütüldü */
    border-radius: 20px; /* Daha oval ve modern */
    text-decoration: none !important;
    border: 1px solid var(--bs-border-color);
    box-shadow: 0 6px 15px rgba(0,0,0,0.04);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-bar-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px); /* Yükselme efekti belirginleşti */
    box-shadow: 0 12px 25px rgba(47, 79, 127, 0.12);
}

/* İkon Kutusu - Büyütüldü */
.contact-bar-icon-box {
    width: 55px;
    height: 55px;
    background: var(--accent-gradient);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem; /* İkon büyüdü */
    flex-shrink: 0;
    margin-right: 20px;
}

.contact-bar-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.contact-bar-info small {
    font-size: 0.8rem; /* Etiket büyüdü */
    font-weight: 700;
    color: var(--bs-secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.contact-bar-info span {
    font-size: 1.1rem; /* Ana metin büyüdü */
    font-weight: 600;
    color: var(--accent-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Masaüstü: Yan Yana Düzen */
@media (min-width: 992px) {
    .contact-bar-flex {
        flex-direction: row;
    }
    .contact-bar-card {
        flex: 1;
    }
}

/* Mobil Navbar Ayarı - Bir tık daha aşağı */
@media (max-width: 991.98px) {
    .contact-bar-section {
        padding-top: 140px !important; 
    }
}/* =================================== */
/* MES TENTE - ENLARGED CONTACT BAR    */
/* =================================== */

.contact-bar-section {
    /* Navbar'dan daha fazla kaçmak için boşluğu artırdık */
    padding-top: clamp(180px, 20vh, 220px) !important; 
    padding-bottom: 50px;
    background-color: var(--bs-body-bg);
    display: block;
    width: 100%;
}

.contact-container-custom {
    max-width: 1300px; /* Biraz daha geniş bir alan */
    margin: 0 auto;
    padding: 0 20px;
}

.contact-bar-flex {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Kartlar arası boşluk bir tık arttı */
}

.contact-bar-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 18px 25px; /* İç boşluk büyütüldü */
    border-radius: 20px; /* Daha oval ve modern */
    text-decoration: none !important;
    border: 1px solid var(--bs-border-color);
    box-shadow: 0 6px 15px rgba(0,0,0,0.04);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-bar-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px); /* Yükselme efekti belirginleşti */
    box-shadow: 0 12px 25px rgba(47, 79, 127, 0.12);
}

/* İkon Kutusu - Büyütüldü */
.contact-bar-icon-box {
    width: 55px;
    height: 55px;
    background: var(--accent-gradient);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem; /* İkon büyüdü */
    flex-shrink: 0;
    margin-right: 20px;
}

.contact-bar-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.contact-bar-info small {
    font-size: 0.8rem; /* Etiket büyüdü */
    font-weight: 700;
    color: var(--bs-secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.contact-bar-info span {
    font-size: 1.1rem; /* Ana metin büyüdü */
    font-weight: 600;
    color: var(--accent-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Masaüstü: Yan Yana Düzen */
@media (min-width: 992px) {
    .contact-bar-flex {
        flex-direction: row;
    }
    .contact-bar-card {
        flex: 1;
    }
}

/* Mobil Navbar Ayarı - Bir tık daha aşağı */
@media (max-width: 991.98px) {
    .contact-bar-section {
        padding-top: 140px !important; 
    }
}