.detail-banner {
    background: linear-gradient(135deg, #163a30, #0b3d2c);
    border-radius: 16px;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(31, 64, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.detail-banner-image {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
    mix-blend-mode: overlay;
}

.detail-banner h1 {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
    font-size: 2.5rem;
}

.detail-banner > div {
    position: relative;
    z-index: 2;
    background-color: rgba(0,0,0,0.3) !important;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

.detail-card {
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.detail-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
}

.detail-icon-box {
    background: linear-gradient(135deg, var(--primary-color), #0f523a);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(11, 61, 44, 0.3);
}

.info-row {
    display: flex;
    padding: 1.2rem 0;
    border-bottom: 1px solid #f0f3f5;
    transition: background-color 0.2s ease;
}

.info-row:hover {
    background-color: #f8fbfa;
    border-radius: 8px;
    padding-left: 10px;
    padding-right: 10px;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    width: 40%;
    color: #6c757d;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
}

.info-label i {
    color: #adb5bd;
    margin-top: 3px;
}

.info-value {
    width: 60%;
    color: #2b3a42;
    font-weight: 600;
    font-size: 1rem;
}

.info-value a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-value a:hover {
    color: #17a2b8;
    text-decoration: underline;
}

/* Harita kartı özelleştirmeleri */
.map-card {
    padding: 0;
    overflow: hidden;
}

.map-card .detail-card-header {
    padding: 1.5rem 2rem;
    margin-bottom: 0;
    border-bottom: 1px solid #f0f3f5;
    background-color: #fcfcfc;
}

.map-card iframe {
    transition: opacity 0.3s ease;
}

.map-card:hover iframe {
    opacity: 0.95;
}

.map-consent {
    background: #eef5f2;
    color: #163a30;
}

@media (max-width: 991px) {
    .detail-banner h1 {
        font-size: 1.8rem;
    }
    .detail-card {
        padding: 1.5rem;
    }
    .info-row {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }
    .info-row:hover {
        padding-left: 0;
        padding-right: 0;
        background-color: transparent;
    }
    .info-label {
        width: 100%;
        font-size: 0.95rem;
    }
    .info-value {
        width: 100%;
        padding-left: 28px;
    }
}


@media (max-width: 768px) {
    .detail-banner {
        padding: 2.5rem 1rem !important;
    }
    .detail-banner h1 {
        font-size: 1.8rem !important;
    }
    .detail-card {
        padding: 1.2rem !important;
    }
    .info-row {
        flex-direction: column !important;
        gap: 5px !important;
        align-items: flex-start !important;
    }
    .info-label {
        width: 100% !important;
    }
    .info-value {
        width: 100% !important;
        padding-left: 0 !important;
        word-break: break-word !important;
        white-space: normal !important;
    }
    .info-value a {
        word-break: break-all !important;
        white-space: normal !important;
    }
}
