:root {
    --dd-light-gray: #f2f2f2;
    --dd-blue: #0056a0;
    --dd-text-gray: #707070;
    --dd-border: #e5e5e5;
}

body {
     font-family: "DM Sans", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

.py-7{
	padding-top:5rem;
	padding-bottom:5rem;
	
}
/* --- HEADER --- */
.top-nav {
    background-color: var(--dd-light-gray);
    padding: 0;
}

/* Tüm standart butonlar (Hemen Teklif Al, Mesaj Gönder vb.) */
.btn-primary, 
.btn-outline-primary, 
.btn-outline-light, 
.btn-lg,
.rounded-pill { /* Daha önce rounded-pill verdiğimiz yerleri 5px'e çekiyoruz */
    border-radius: 5px !important;
    font-size: 16px !important;
    font-weight: 500;
    padding: 10px 25px; /* Daha dolgun bir görünüm için */
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    color: var(--dd-text-gray);
    padding: 12px 20px !important;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.2s;
}

@media (min-width: 992px) {
    .navbar-nav .nav-link.active {
        background-color: #fff;
        color: var(--dd-blue) !important;
        font-weight: 600;
    }
    .navbar-nav .nav-link:hover:not(.active) {
        color: #000;
    }
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 1050;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .navbar-nav .nav-link {
        border-bottom: 1px solid #eee;
        padding: 15px !important;
    }
    .dropdown-menu {
        background-color: #f9f9f9;
        border: none;
        margin: 0;
        padding-left: 15px;
    }
}

.dropdown-menu {
    border: 1px solid var(--dd-border);
    border-top: none;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

.dropdown-item {
    font-size: 14px;
    color: var(--dd-text-gray);
    padding: 10px 20px;
}

.dropdown-item:hover {
    background-color: var(--dd-light-gray);
    color: var(--dd-blue);
}

.utility-area {
    font-size: 13px;
    color: var(--dd-text-gray);
}

.search-btn {
    border: none;
    background: none;
    color: var(--dd-text-gray);
    font-weight: 500;
    cursor: pointer;
}

.main-header-bar {
    padding: 20px 0;
    background-color: #fff;
}

.brand-logo {
    height: 45px;
    width: auto;
}

/* --- SLIDER --- */
.slider-section { 
    padding: 0px 0;
}

.carousel-inner {
    border-radius: 0px;
}

.carousel-item img {

    height: 450px;
    width: 100%;
	object-fit: cover; /* Resmin en-boy oranını bozmadan alanı kaplamasını sağlar */
    object-position: center; /* Resmi hem dikey hem yatayda merkezler */
}

@media (max-width: 768px) {
    .carousel-item img {
        height: 300px;
    }
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--dd-blue);
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
      bottom: 0 !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
     display: flex !important;
    flex-direction: column;
    justify-content: center; /* Dikeyde ortalar */
    align-items: center;    /* Yatayda ortalar */
    height: 100%;
    max-width: 404px;
	
}


/* Slider Oklarını Sol Alt Köşeye Sabitleme */
.carousel-control-prev,
.carousel-control-next {
    top: auto !important;         /* Üstten hizalamayı iptal et */
    bottom: 30px !important;      /* Alttan 30px boşluk bırak */
    width: 50px !important;       /* Ok genişliği */
    height: 50px !important;      /* Ok yüksekliği */
    background-color: var(--dd-blue) !important; /* DemirDöküm Mavisi */
    opacity: 1 !important;        /* Şeffaflığı kaldır */
    border-radius: 5px !important; /* Senin 5px kuralın */
    transition: all 0.3s ease;
    z-index: 10;                  /* Yazıların üstünde kalması için */
}

/* Geri (Prev) Butonu Konumu */
.carousel-control-prev {
    right: auto !important;       /* Sağdan hizalamayı iptal et */
    left: 30px !important;        /* En soldan 30px */
}

/* İleri (Next) Butonu Konumu */
.carousel-control-next {
    left: 90px !important;        /* Geri butonunun hemen yanına (30 + 60px) */
    right: auto !important;       /* Sağdan hizalamayı iptal et */
}

/* Ok İkon Ayarları */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px !important;
    height: 20px !important;
}

/* Hover Efekti */
.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: #333 !important;
    transform: translateY(-3px);
}

/* Mobil Düzenleme */
@media (max-width: 768px) {
    .carousel-control-prev { left: 15px !important; bottom: 15px !important; }
    .carousel-control-next { left: 75px !important; bottom: 15px !important; }
}
.navbar-toggler {
    border: none;
    padding: 10px 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

 /* --- İÇ SAYFA ÖZEL STİLLERİ --- */
    
    /* Sub Header & Breadcrumb */
    .sub-header {
        background-color: var(--dd-light-gray);
		padding:50px 0px;
    }
	.sub-header h1{
		font-size:32px;
		font-weight:500;
	}
	.breadcrumb{
		margin-bottom:0px;
	}
    .breadcrumb-item a {
        color: var(--dd-text-gray);
        text-decoration: none;
        font-size: 14px;
    }
    .breadcrumb-item.active {
        font-size: 14px;
    }
	.breadcrumb-item+.breadcrumb-item::before{
		    float: left;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: var(--bs-breadcrumb-divider-color);
    content: var(--bs-breadcrumb-divider, ">");
    margin-top: 1px;
	}
    /* Tipografi Stilleri */
    .typography-container h2 {
        color: var(--dd-blue);
        font-weight: 700;
        margin-bottom: 20px;
        font-size: 2rem;
    }

    .typography-container h3 {
        color: #333;
        font-weight: 600;
        margin-top: 30px;
        margin-bottom: 15px;
        font-size: 1.5rem;
    }

    .typography-container h4 {
        color: #555;
        font-weight: 600;
        margin-top: 25px;
        font-size: 1.25rem;
    }

    .typography-container h5 {
        color: var(--dd-blue);
        font-weight: 600;
        margin-top: 20px;
        font-size: 1.1rem;
    }

    .typography-container p {
        color: #666;
        line-height: 1.8;
        font-size: 16px;
    }

    /* Liste Tasarımları */
    .typography-container ul, 
    .typography-container ol {
        margin-bottom: 25px;
        color: #666;
        padding-left: 20px;
    }

    .typography-container ul li {
        margin-bottom: 10px;
        position: relative;
        list-style-type: none;
    }

    /* UL için Mavi Nokta Tasarımı */
    .typography-container ul li::before {
        content: "•";
        color: var(--dd-blue);
        font-weight: bold;
        display: inline-block;
        width: 1em;
        margin-left: -1em;
    }

    .typography-container ol li {
        margin-bottom: 10px;
        padding-left: 5px;
    }

    /* Mobil Düzenleme */
    @media (max-width: 991px) {
        .content-area img {
            margin-bottom: 30px;
        }
    }

/* --- FOOTER --- */
.footer-area {
    background-color: var(--dd-blue);
    color: #fff;
    padding-top: 60px;
}

.footer-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Yan yana 2 sütun oluşturur */
    gap: 10px; /* Elemanlar arasındaki boşluk */
    padding: 0;
    list-style: none;
}

/* Mobilde tek sütun olsun istersen (isteğe bağlı) */
@media (max-width: 576px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
    }
}

.contact-list i {
    width: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background-color: #fff;
    color: var(--dd-blue);
    transform: translateY(-3px);
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    margin-bottom: 0;
}

.footer-bottom {
    font-size: 13px;
    color: #fff;
}

.legal-links a {
    color: #fff;
    text-decoration: none;
}

/* --- SAĞ SABİT MENÜ (TEKLİ AÇILIR YAPI) --- */

.side-contact-menu {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 4px; /* Butonlar arasındaki ince boşluk */
    align-items: flex-end; /* Butonları sağa yaslar */
}

.side-menu-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 60px;
    background-color: transparent; /* Renk alt elemanlarda tanımlı */
    transition: all 0.3s ease-in-out;
    border-radius: 0 !important; /* Keskin köşeler */
}

/* İkon Alanı (Sabit 60x60 Kare) */
.item-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;
    border-radius: 0 !important;
}

/* Metin Alanı (Gizli Başlar) */
.item-text {
    color: #fff;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    width: 0; /* Kapalı durum */
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
    border-radius: 0 !important;
}

/* Sadece üzerine gelinen butonu açan kural */
.side-menu-item:hover .item-text {
    width: 220px; /* Açıldığında alacağı genişlik */
    opacity: 1;
    padding: 0 20px;
}

/* Görseldeki Renk Tonları */
.blue-1, .blue-1 .item-icon, .blue-1 .item-text { background-color: #005eb8; }
.blue-2, .blue-2 .item-icon, .blue-2 .item-text { background-color: #004a99; }
.blue-3, .blue-3 .item-icon, .blue-3 .item-text { background-color: #003366; }

/* İkon ve Metin Arasındaki Çizgi (Sadece açılınca görünsün diye hover'a bağladık) */
.side-menu-item:hover .item-icon {
    border-left: 1px solid rgba(255,255,255,0.2);
}

/* Mobil ayarı */
@media (max-width: 768px) {
    .side-menu-item:hover .item-text {
        width: 160px;
        font-size: 15px;
    }
}