﻿:root {
    --primary-yellow: #f4c400;
    --primary-yellow-dark: #d9ab00;
    --dark-bg: #1f1f1f;
    --dark-soft: #2b2b2b;
    --text-light: #ffffff;
    --text-dark: #111111;
    --light-bg: #f8f8f8;
    --border-soft: #e5e7eb;
}

html {
    font-size: 14px;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    color: var(--text-dark);
}

main {
    flex: 1;
}

a {
    text-decoration: none;
}

/* TOPBAR */
:root {
    --primary-yellow: #f4c400;
    --primary-yellow-dark: #d9ab00;
    --dark-bg: #1f1f1f;
    --dark-bg-2: #111111;
    --text-dark: #111111;
    --text-light: #ffffff;
    --soft-gray: #f8f8f8;
    --border-soft: #e5e7eb;
}

html {
    font-size: 14px;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    color: var(--text-dark);
    margin: 0;
}

main {
    flex: 1;
}

a {
    text-decoration: none;
}

/* TOPBAR */
.topbar-custom {
    background-color: var(--primary-yellow);
    padding: 9px 0;
    color: var(--text-dark);
}

.topbar-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.topbar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.topbar-text {
    color: var(--text-dark);
    font-size: 0.92rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

    .topbar-text:hover {
        color: #000000;
    }

.social-box {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-bg);
    color: #ffffff;
    border-radius: 4px;
    font-size: 0.92rem;
    transition: all 0.2s ease;
}

    .social-box:hover {
        background-color: #000000;
        transform: translateY(-1px);
    }

        .social-box:hover .fa-instagram {
            color: #e1306c;
        }

        .social-box:hover .fa-facebook-f {
            color: #1877f2;
        }

        .social-box:hover .fa-x-twitter {
            color: #ffffff;
        }

        .social-box:hover .fa-youtube {
            color: #ff0000;
        }

        .social-box:hover .fa-whatsapp {
            color: #25d366;
        }

/* NAVBAR */
.navbar-custom {
    background-color: var(--dark-bg);
    padding-top: 14px;
    padding-bottom: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.navbar-brand {
    color: var(--text-light) !important;
    margin-right: 24px;
}

.site-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    background: none; /* ❌ beyaz kutuyu kaldır */
    padding: 0; /* ❌ boşluğu kaldır */
    border-radius: 0; /* ❌ köşeleri kaldır */
    display: block;
}

.brand-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-yellow);
}

.brand-subtitle {
    font-size: 0.7rem;
    color: #d1d5db;
}

.nav-link {
    color: #f3f4f6 !important;
    font-weight: 500;
    font-size: 0.98rem;
    margin-left: 4px;
    margin-right: 4px;
    transition: color 0.2s ease;
}

    .nav-link:hover,
    .nav-link:focus {
        color: var(--primary-yellow) !important;
    }

.btn-warning-custom {
    background-color: var(--primary-yellow);
    border: 1px solid var(--primary-yellow);
    color: var(--text-dark);
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.2s ease;
}

    .btn-warning-custom:hover {
        background-color: var(--primary-yellow-dark);
        border-color: var(--primary-yellow-dark);
        color: #000000;
    }

/* Mobil */
@media (max-width: 991.98px) {
    .topbar-left,
    .topbar-right {
        justify-content: center;
    }

    .topbar-right {
        margin-top: 2px;
    }

    .navbar-brand {
        max-width: 75%;
    }

    .site-logo {
        width: 58px;
        height: 58px;
    }

    .brand-title {
        font-size: 0.95rem;
    }

    .brand-subtitle {
        font-size: 0.7rem;
    }

    .navbar-collapse {
        margin-top: 14px;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-link {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

@media (max-width: 767.98px) {
    .topbar-custom {
        padding: 10px 0;
    }

    .topbar-left {
        gap: 10px;
        justify-content: center;
    }

    .topbar-text {
        font-size: 0.85rem;
    }

    .social-box {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }

    .brand-subtitle {
        display: none;
    }
}
/* NAVBAR */
.navbar-custom {
    background-color: var(--dark-bg);
    padding-top: 10px;
    padding-bottom: 10px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    color: #f3f4f6 !important;
    font-weight: 500;
    margin-left: 6px;
    margin-right: 6px;
}

    .nav-link:hover {
        color: var(--primary-yellow) !important;
    }

.btn-warning-custom {
    background-color: var(--primary-yellow);
    border: 1px solid var(--primary-yellow);
    color: var(--text-dark);
    border-radius: 10px;
    font-weight: 700;
}

    .btn-warning-custom:hover {
        background-color: var(--primary-yellow-dark);
        border-color: var(--primary-yellow-dark);
        color: #000000;
    }

/* Genel butonları da uyumlu yap */
.btn-primary {
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: var(--text-dark);
    border-radius: 10px;
    font-weight: 700;
}

    .btn-primary:hover {
        background-color: var(--primary-yellow-dark);
        border-color: var(--primary-yellow-dark);
        color: #000000;
    }

.btn-outline-primary {
    border-color: var(--primary-yellow);
    color: var(--primary-yellow-dark);
    border-radius: 10px;
}

    .btn-outline-primary:hover {
        background-color: var(--primary-yellow);
        border-color: var(--primary-yellow);
        color: #000000;
    }

/* Hero ve koyu alanlar */
.hero-section {
    position: relative;
    background: url('/images/bursa-site-yonetimi.jpeg') center center / cover no-repeat;
    padding: 100px 0;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65); /* karartma */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.7rem;
    font-weight: 800;
    color: #ffffff;
}

.hero-text {
    font-size: 1.05rem;
    color: #e5e7eb;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(244, 196, 0, 0.2);
    color: #f4c400;
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 700;
}

/* Bölümler */
.section-title {
    font-weight: 700;
    margin-bottom: 20px;
    color: #111111;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-yellow-dark);
}

    .section-tag.light {
        color: #fff2b3;
    }

.page-header {
    background: linear-gradient(135deg, #fffbea, #fff3bf);
    border-radius: 16px;
    padding: 50px 30px;
    margin-bottom: 40px;
}

.card-custom,
.project-card,
.reference-card,
.contact-form-card,
.contact-info-card,
.partner-card {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background-color: #fff3bf;
    color: #7a5d00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.services-section {
    background-color: #fafafa;
}

.feature-box {
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 28px 22px;
    background-color: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.cta-box {
    background: linear-gradient(135deg, #2b2b2b, #111111);
    color: white;
    border-radius: 24px;
    padding: 60px 30px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

/* Footer */
.footer-custom {
    background-color: var(--dark-bg);
    color: #e5e7eb;
}

    .footer-custom h5 {
        color: var(--primary-yellow);
    }

.footer-links a {
    color: #d1d5db;
}

    .footer-links a:hover {
        color: var(--primary-yellow);
    }

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.1rem;
    }

    .hero-image-box {
        min-height: 260px;
    }

    .topbar-left,
    .topbar-right {
        justify-content: center !important;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 70px 0;
        min-height: 400px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .page-header {
        padding: 35px 20px;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .social-icon {
        width: 34px;
        height: 34px;
    }
}
.social-icon:hover {
    background-color: #1f1f1f;
    color: #f4c400;
    transform: translateY(-2px);
}
.about-image-box {
    min-height: 320px;
    border-radius: 20px;
    overflow: hidden;
    background: #e2e8f0;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.about-page-image {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
}
/* Ana blok (tek kart hissi) */
.about-section-box {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

/* Fotoğraf alanı */
.about-image-box {
    height: 100%;
}

.about-page-image {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
}

/* Metin alanı */
.about-text-box {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about-image-box img {
    transition: transform 0.4s ease;
}

.about-section-box:hover img {
    transform: scale(1.05);
}
.phone-white {
    color: #ffffff !important;
}

    .phone-white:hover {
        color: #ffffff !important;
    }

.service-image {
    height: 200px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* hover efekti */
.service-card:hover .service-img {
    transform: scale(1.05);
}
.service-card {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    min-height: 50px;
    display: flex;
    align-items: flex-end;
    color: #ffffff;
}

/* KARARTMA */
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* İÇERİK */
.service-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

    /* YAZILAR */
    .service-content h4 {
        color: #ffffff;
        font-weight: 700;
    }

    .service-content p {
        color: #e5e7eb;
    }

.service-list {
    color: #e5e7eb;
}

/* İKON */
.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #f4c400;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

/* HOVER EFEKTİ */
.service-card:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}