/* GENEL AYARLAR */
:root {
    --gold: #b28e5e;
    --dark: #1a1a1a;
    --light: #f8f9fa;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
}

h1, h2, h3, .navbar-brand {
    font-family: 'Playfair Display', serif;
}



/* TOP BAR */
.top-bar {
    background-color: var(--dark);
    color: #fff;
    padding: 10px 0;
    font-size: 13px;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.top-bar a:hover {
    color: var(--gold);
}

/* NAVBAR AYARLARI */
.navbar {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.navbar-brand img {
    max-height: 60px;
    object-fit: contain;
}

.nav-link {
    color: #333 !important;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    padding: 10px 15px !important;
    transition: 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold) !important;
}

/* HOVER (ÜZERİNE GELİNCE AÇILMA) MANTIĞI */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
        transition: all 0.3s ease;
    }

    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        margin-top: 15px;
        border-top: 3px solid var(--gold) !important;
        border-radius: 0 0 5px 5px;
        transition: all 0.3s ease;
    }
}

/* DROPDOWN ELEMANLARI */
.dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.dropdown-item:hover {
    background-color: var(--gold);
    color: #fff;
    padding-left: 25px;
}

/* SAĞDAKİ ALTIN BUTON */
.btn-gold {
    background-color: var(--gold);
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 12px;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-gold:hover {
    background-color: #8e724b;
    color: #fff;
    transform: translateY(-2px);
}


/* SLIDER */
#heroSlider {
    height: 85vh; /* Ekranın %85'ini kaplar */
}

.carousel-inner, .carousel-item {
    height: 100%;
}

.slider-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Karartma katmanı */
.slider-overlay::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.carousel-caption {
    bottom: 30%;
    text-align: center;
}

.divider {
    width: 250px;
    height: 2px;
    background: var(--gold);
    margin: 20px auto;
    position: relative;
}

/* Görseldeki dalgalı çizgi efekti için küçük bir dokunuş */
.divider::after {
    content: "~";
    position: absolute;
    top: -15px;
    left: 45%;
    font-size: 30px;
    color: var(--gold);
}

.btn-gold-outline {
    border: 2px solid var(--gold);
    color: #fff;
    background: var(--gold);
    padding: 12px 30px;
    font-weight: 600;
}

.btn-transparent {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 30px;
    font-weight: 600;
}

.btn-transparent:hover {
    background: #fff;
    color: #000;
}

/* AYIRICI ÇİZGİ TASARIMI */
.divider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.divider-line {
    height: 1px;
    background: #e0e0e0;
    width: 150px;
    border-style: dashed;
}

.divider-icon {
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
}

/* HİZMET KARTLARI */
.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

.service-img {
    height: 250px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    position: relative;
    padding-top: 50px !important;
}

/* Yuvarlak Altın İkon */
.service-badge-icon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gold);
    color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 5px solid #fff;
    font-size: 20px;
}

.btn-detail {
    color: #2c3e50;
    font-size: 14px;
    transition: 0.3s;
    border-bottom: 2px solid transparent;
}

.btn-detail:hover {
    color: var(--gold);
    padding-left: 5px;
}

/* MOBİL AYAR: col-6 olduğu için 2li görünür, fontu biraz küçültelim */
@media (max-width: 768px) {
    .service-img {
        height: 180px;
    }
    .service-content h4 {
        font-size: 16px;
    }
    .btn-detail {
        font-size: 12px;
    }
    .service-badge-icon {
        width: 45px;
        height: 45px;
        top: -22px;
        font-size: 14px;
    }
}

/* HAKKIMIZDA BÖLÜMÜ */
.about-section {
    background-color: #fff;
    overflow: hidden;
}

.about-list i {
    color: #2c3e50; /* Koyu lacivert/siyah tonu */
    font-size: 14px;
}

.about-list span {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.6;
}

/* Sağdaki Görsel ve Üstündeki Kart */
.about-image-wrapper {
    padding: 20px;
}

.about-image-wrapper img {
    width: 100%;
    height: 550px; /* Görseldeki gibi uzun durması için */
    object-fit: cover;
}

.ask-lawyer-card {
    position: absolute;
    bottom: 50px;
    left: -20px; /* Görseldeki gibi dışarı taşma efekti */
    background: #fff;
    padding: 20px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 4px;
    min-width: 250px;
    border-left: 5px solid var(--gold);
}

.ask-lawyer-card .icon-box {
    background: var(--gold);
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 20px;
}

/* MOBİL AYARLAR */
@media (max-width: 991px) {
    .about-image-wrapper img {
        height: auto;
    }
    .ask-lawyer-card {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: -30px;
        margin-left: 20px;
        margin-right: 20px;
    }
}

/* FOOTER GENEL */
.footer-section {
    background-color: #050a12; /* Çok koyu lacivert/siyah tonu */
    color: #fff;
    padding: 80px 0 40px;
    font-size: 14px;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 600;
}

/* LİNKLER */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a i {
    font-size: 10px;
    margin-right: 10px;
    color: var(--gold);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

/* SAĞ TARAF İLETİŞİM KARTI */
.footer-phone-card {
    background-color: #1a3366; /* Görseldeki koyu mavi tonu */
    padding: 20px;
    border-radius: 8px;
    transition: 0.3s;
}

.footer-phone-card:hover {
    background-color: #214182;
}

.phone-icon-box {
    background-color: var(--gold);
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 20px;
}

.phone-text-box h5 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.phone-text-box small {
    color: #cbd5e0;
    font-size: 12px;
}

.footer-copyright {
    color: #666;
    margin-top: 20px;
}

/* MOBİL AYAR */
@media (max-width: 767px) {
    .footer-section {
        text-align: center;
    }
    .footer-links a {
        justify-content: center;
    }
    .footer-phone-card {
        justify-content: center;
    }
}