/* Turkey Map Interactive Styles */
:root {
    --primary-color: #e2b93b;
    --secondary-color: #d4a574;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --border-color: #ecf0f1;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
}

.turkey-map-container {
    background: #f8f9fa;
    padding: 80px 0;
    position: relative;
}

.turkey-map-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.turkey-map-title {
    text-align: center;
    margin-bottom: 50px;
}

.turkey-map-title h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.turkey-map-title p {
    font-size: 16px;
    color: var(--text-light);
    margin-top: 15px;
    font-weight: 500;
}

#turkey-map-drawing {
    width: 100%;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

#turkey-map-drawing g path {
    fill: #4a4a4a;
    stroke: #fff;
    stroke-width: 0.8;
    cursor: pointer;
    transition: all 0.3s ease;
}

#turkey-map-drawing g path:hover {
    fill: #5a5a5a;
    stroke: #fff;
    stroke-width: 1;
}

#turkey-map-drawing g path.has-branch {
    fill: #e2b93b;
    stroke: #fff;
    stroke-width: 1;
}

#turkey-map-drawing g path.has-branch:hover {
    fill: #d4a574;
    stroke: #fff;
    stroke-width: 1.2;
}

#turkey-map-drawing g path.active {
    fill: #d4a574 !important;
    stroke: #fff !important;
    stroke-width: 1.2;
}

.turkey-map-svg-container {
    background: transparent !important;
    padding: 20px !important;
    border-radius: 0 !important;
    margin: 30px 0 !important;
    box-shadow: none !important;
}

/* Branch Details Section */
.branch-details-section {
    margin-top: 60px;
    display: none;
}

.branch-details-section.active {
    display: block;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.no-branches-message {
    text-align: center;
    padding: 60px 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.no-branches-message i {
    font-size: 60px;
    color: var(--text-light);
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-branches-message p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

/* Info Block Styles */
.info-block-one {
    position: relative;
    display: block;
}

.info-block-one:hover {
    transform: translateY(-5px);
}

.info-block-one .inner-box {
    position: relative;
    display: block;
}

.info-block-one .inner-box .upper-box {
    position: relative;
    display: block;
    background: #fff;
    border-radius: 30px 30px 0px 30px;
    padding: 21px 30px 23px 30px;
    overflow: hidden;
}

.info-block-one .inner-box .upper-box:before {
    position: absolute;
    content: '';
    background: #e7e3ee;
    width: calc(100% - 60px);
    height: 1px;
    left: 30px;
    bottom: 0px;
}

.info-block-one .inner-box .lower-content {
    position: relative;
    background: #fff;
    padding: 30px 30px 34px 30px;
    border-radius: 0px 0px 30px 30px;
    box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.10);
}

.info-block-one .inner-box .upper-box .light-icon {
    position: absolute;
    right: 30px;
    bottom: -7px;
    font-size: 100px;
    color: #e7e3ee;
}

.info-column:last-child .info-block-one .inner-box .upper-box .light-icon {
    bottom: -15px;
}

.info-block-one .inner-box .upper-box h3 {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 2px;
}

.info-block-one .inner-box .upper-box p {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 24px;
    color: #75727b;
    margin: 0;
}

.info-block-one .inner-box .single-item {
    position: relative;
    display: block;
    margin-bottom: 17px;
    padding-left: 50px;
}

.info-block-one .inner-box .single-item .icon-box {
    position: absolute;
    left: 0px;
    top: 10px;
    font-size: 30px;
    color: var(--primary-color);
}

.info-block-one .inner-box .single-item h6 {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 9px;
    z-index: 1;
}

.info-block-one .inner-box .single-item h6:before {
    position: absolute;
    content: '';
    background: #f4f1fa;
    width: 100%;
    height: 10px;
    left: 0px;
    bottom: 3px;
    z-index: -1;
}

.info-block-one .inner-box .single-item p {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 24px;
    color: #75727b;
    margin: 0;
}

.info-block-one .inner-box .single-item p a {
    color: #75727b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-block-one .inner-box .single-item p a:hover {
    color: var(--primary-color);
}

/* Address Map Item */
.address-map-item {
    position: relative;
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    align-items: flex-start;
}

.address-map-item .map-icon {
    position: relative;
    font-size: 28px;
    color: #fff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.address-map-item .map-content {
    flex: 1;
}

.address-map-item .map-content h6 {
    position: relative;
    display: inline-block;
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
    z-index: 1;
    color: #fff;
}

.address-map-item .map-content h6:before {
    display: none;
}

.address-map-item .map-content p {
    position: relative;
    display: block;
    font-size: 13px;
    line-height: 20px;
    color: #fff;
    margin: 0;
    font-weight: 500;
}

.address-map-item .map-content p a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
}

.address-map-item .map-content p a:hover {
    border-bottom-color: #fff;
    opacity: 0.9;
}

/* Map Legend */
.map-legend {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    padding: 25px 35px;
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.legend-color {
    width: 32px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.legend-color.has-branch {
    background: #27ae60;
    border-color: #229954;
}

.legend-color.no-branch {
    background: #e8dfd5;
    border-color: #d4a574;
}

.legend-text {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
}

/* City Buttons */
.city-button {
    padding: 12px 24px !important;
    background: var(--primary-color) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    font-size: 14px !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 3px 10px rgba(226, 185, 59, 0.15) !important;
}

.city-button:hover {
    background: var(--secondary-color) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(226, 185, 59, 0.25) !important;
}

/* Responsive */
@media (max-width: 1200px) {
    .info-block-one .inner-box .upper-box h3 {
        font-size: 22px;
    }
}

@media (max-width: 992px) {
    .info-block-one .inner-box .upper-box {
        padding: 18px 25px 20px 25px;
    }

    .info-block-one .inner-box .lower-content {
        padding: 25px 25px 28px 25px;
    }

    .info-block-one .inner-box .upper-box h3 {
        font-size: 20px;
        line-height: 28px;
    }
}

@media (max-width: 768px) {
    .turkey-map-container {
        padding: 60px 0;
    }

    .turkey-map-title h2 {
        font-size: 32px;
    }

    .map-legend {
        flex-direction: column;
        gap: 20px;
        padding: 20px 25px;
    }

    .info-block-one .inner-box .upper-box {
        padding: 15px 20px 17px 20px;
        border-radius: 20px 20px 0px 20px;
    }

    .info-block-one .inner-box .upper-box:before {
        width: calc(100% - 40px);
        left: 20px;
    }

    .info-block-one .inner-box .upper-box .light-icon {
        right: 20px;
        font-size: 80px;
    }

    .info-block-one .inner-box .upper-box h3 {
        font-size: 18px;
        line-height: 26px;
    }

    .info-block-one .inner-box .lower-content {
        padding: 20px 20px 24px 20px;
        border-radius: 0px 0px 20px 20px;
    }

    .info-block-one .inner-box .single-item {
        margin-bottom: 14px;
        padding-left: 45px;
    }

    .info-block-one .inner-box .single-item .icon-box {
        font-size: 24px;
    }

    .info-block-one .inner-box .single-item h6 {
        font-size: 12px;
        line-height: 20px;
    }

    .info-block-one .inner-box .single-item p {
        font-size: 13px;
        line-height: 20px;
    }

    .address-map-item {
        padding: 12px;
        margin-bottom: 15px;
        border-radius: 10px;
    }

    .address-map-item .map-icon {
        font-size: 24px;
        width: 36px;
        height: 36px;
    }

    .address-map-item .map-content h6 {
        font-size: 11px;
        line-height: 16px;
        margin-bottom: 4px;
    }

    .address-map-item .map-content p {
        font-size: 12px;
        line-height: 18px;
    }
}

@media (max-width: 480px) {
    .turkey-map-container {
        padding: 40px 0;
    }

    .turkey-map-title h2 {
        font-size: 26px;
    }

    .turkey-map-title p {
        font-size: 14px;
    }

    .info-block-one .inner-box .upper-box {
        padding: 12px 15px 14px 15px;
        border-radius: 15px 15px 0px 15px;
    }

    .info-block-one .inner-box .upper-box:before {
        width: calc(100% - 30px);
        left: 15px;
    }

    .info-block-one .inner-box .upper-box .light-icon {
        right: 15px;
        font-size: 60px;
        bottom: -5px;
    }

    .info-block-one .inner-box .upper-box h3 {
        font-size: 16px;
        line-height: 24px;
    }

    .info-block-one .inner-box .upper-box p {
        font-size: 12px;
        line-height: 18px;
    }

    .info-block-one .inner-box .lower-content {
        padding: 15px 15px 18px 15px;
        border-radius: 0px 0px 15px 15px;
    }

    .info-block-one .inner-box .single-item {
        margin-bottom: 12px;
        padding-left: 40px;
    }

    .info-block-one .inner-box .single-item .icon-box {
        font-size: 20px;
        top: 8px;
    }

    .info-block-one .inner-box .single-item h6 {
        font-size: 11px;
        line-height: 18px;
        margin-bottom: 6px;
    }

    .info-block-one .inner-box .single-item h6:before {
        height: 8px;
        bottom: 2px;
    }

    .info-block-one .inner-box .single-item p {
        font-size: 12px;
        line-height: 18px;
    }

    .address-map-item {
        padding: 10px;
        margin-bottom: 12px;
        border-radius: 8px;
        gap: 10px;
    }

    .address-map-item .map-icon {
        font-size: 20px;
        width: 32px;
        height: 32px;
    }

    .address-map-item .map-content h6 {
        font-size: 10px;
        line-height: 14px;
        margin-bottom: 3px;
    }

    .address-map-item .map-content p {
        font-size: 11px;
        line-height: 16px;
    }

    .no-branches-message {
        padding: 50px 20px;
    }

    .no-branches-message i {
        font-size: 50px;
    }

    .no-branches-message p {
        font-size: 16px;
    }
}
