/* GENEL RENK PALETİ */
:root {
    --primary-color: #2c3e50; /* Logodaki Koyu Ton */
    --accent-color: #34495e;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --footer-bg: #1a252f;
	--gold-color: #D4AF37;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* NAVBAR */
.bg-dark-blue {
    background-color: #28282B !important;
}

.nav-link {
    font-weight: 500;
	color: var(--white);
    transition: color 0.3s;
}

.nav-link:hover {
	color: var(--gold-color);
}

.btn-primary {
    background-color: #ffffff;
    color: var(--primary-color);
    border: none;
    font-weight: 600;
}

.btn-primary:hover {
    /*background-color: var(--light-gray);*/
    background-color: var(--gold-color);
    color: #000;
}

/* HERO SECTION */
.hero-section {
    height: 80vh;
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), 
                url('../img/cover.jpg') center/cover;
    margin-top: 70px;
}

/* HİZMET KARTLARI */
.heading-line {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin-top: 10px;
}

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid transparent !important;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
    border-color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-gold {
	color: var(--gold-color);
}

/* FOOTER STİLLERİ */
.footer {
    background-color: #28282B;
}

.text-light-gray {
    color: #bdc3c7;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--gold-color);
    padding-left: 5px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--gold-color);
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* LOGO FİLTRESİ (Footer'da beyaz görünmesi için gerekirse) */
.filter-white {
    filter: brightness(0) invert(1);
}



/* Sayfa Başlığı Alanı */
.page-title-section {
    height: 40vh;
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), 
                url('https://images.unsplash.com/photo-1531834685032-c34bf0d84c77?auto=format&fit=crop&q=80&w=1920') center/cover;
    padding-top: 100px;
}

/* Hakkımızda Resim Alanı */
.about-image-wrapper {
    padding: 15px;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 20px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.experience-badge .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Vizyon/Misyon İkon Kutusu */
.icon-box {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Breadcrumb Ayarı */
.breadcrumb-item + .breadcrumb-item::before {
    color: #bdc3c7;
}



/* Hizmet Kartı Tasarımı */
.service-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid #eee;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

.service-img {
    height: 220px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-item:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    position: relative;
    padding-top: 40px !important;
}

.service-icon-small {
    position: absolute;
    top: -25px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
}

.service-content h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-content p {
    font-size: 0.95rem;
    line-height: 1.6;
}



/* Proje Kartı Tasarımı */
.project-card {
    background: #fff;
    transition: all 0.4s ease;
    border: 1px solid #eee;
    height: 100%;
}

.project-img-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.project-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-img-wrapper img {
    transform: scale(1.1);
}

/* Proje Durum Rozeti */
.project-status {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 6px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 2;
}

/* Filtre Butonları Özel Stil */
.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover, .btn-outline-primary.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Alt Proje Kartları İçin Yükseklik Ayarı */
.col-lg-4 .project-img-wrapper {
    height: 200px;
}



/* İletişim Sayfası İkon Daireleri */
.icon-circle {
    width: 45px;
    height: 45px;
    background-color: rgba(44, 62, 80, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Form Elemanları */
.form-control, .form-select {
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 6px;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(44, 62, 80, 0.1);
}

.btn-dark-blue {
    background-color: var(--primary-color);
    color: white;
    transition: 0.3s;
}

.btn-dark-blue:hover {
    background-color: #1a252f;
    color: white;
    transform: translateY(-2px);
}

/* Sosyal Medya İletişim */
.social-links-contact a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    line-height: 35px;
    border-radius: 4px;
    margin-right: 8px;
    transition: 0.3s;
}

.social-links-contact a:hover {
    opacity: 0.8;
}