/* 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: var(--primary-color);
    stroke: #fff;
    stroke-width: 0.8;
    cursor: pointer;
    transition: all 0.3s ease;
}

#turkey-map-drawing g path:hover {
    fill: #c9a035;
    stroke: #fff;
    stroke-width: 1;
}

#turkey-map-drawing g path.has-branch {
    fill: var(--secondary-color);
    stroke: #fff;
    stroke-width: 1;
}

#turkey-map-drawing g path.has-branch:hover {
    fill: #c19566;
    stroke: #fff;
    stroke-width: 1.2;
}

#turkey-map-drawing g path.active {
    fill: #c19566 !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 - Modern Design */
.info-block-one {
    position: relative;
    display: block;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.info-block-one:hover {
    transform: translateY(-10px);
}

.info-block-one .inner-box {
    position: relative;
    display: block;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.info-block-one .inner-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 1;
}

.info-block-one:hover .inner-box::before {
    transform: scaleX(1);
}

.info-block-one:hover .inner-box {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.info-block-one .inner-box .upper-box {
    position: relative;
    display: block;
    background: #fff;
    padding: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.info-block-one .inner-box .upper-box:before {
    display: none;
}

.info-block-one .inner-box .lower-content {
    position: relative;
    background: #fff;
    padding: 30px;
}

.info-block-one .inner-box .upper-box .light-icon {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
    color: #f5f5f5;
    opacity: 0.5;
}

.info-block-one .inner-box .upper-box h3 {
    position: relative;
    display: block;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a2e;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.info-block-one .inner-box .upper-box p {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.info-block-one .inner-box .single-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 0;
}

.info-block-one .inner-box .single-item:last-child {
    margin-bottom: 0;
}

.info-block-one .inner-box .single-item .icon-box {
    position: relative;
    left: 0;
    top: 0;
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(226, 185, 59, 0.1);
    border-radius: 10px;
}

.info-block-one .inner-box .single-item h6 {
    position: relative;
    display: block;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
    z-index: 1;
    color: #999;
    letter-spacing: 0.5px;
}

.info-block-one .inner-box .single-item h6:before {
    display: none;
}

.info-block-one .inner-box .single-item p {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 1.6;
    color: #1a1a2e;
    margin: 0;
    font-weight: 500;
}

.info-block-one .inner-box .single-item p a {
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.info-block-one .inner-box .single-item p a:hover {
    color: var(--primary-color);
}

/* Address Map Item - Modern Design */
.address-map-item {
    position: relative;
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--primary-color);
    border-radius: 12px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.address-map-item:hover {
    background: var(--secondary-color);
    transform: translateX(5px);
}

.address-map-item .map-icon {
    position: relative;
    font-size: 24px;
    color: #fff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.address-map-item .map-content {
    flex: 1;
}

.address-map-item .map-content h6 {
    position: relative;
    display: block;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    z-index: 1;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}

.address-map-item .map-content h6:before {
    display: none;
}

.address-map-item .map-content p {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 1.6;
    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;
}

.address-map-item .map-content p a:hover {
    opacity: 0.8;
}

/* 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: var(--secondary-color);
    border-color: #c19566;
}

.legend-color.no-branch {
    background: var(--primary-color);
    border-color: #c9a035;
}

.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: 20px;
    }
}

@media (max-width: 992px) {
    .info-block-one .inner-box .upper-box {
        padding: 25px;
    }

    .info-block-one .inner-box .lower-content {
        padding: 25px;
    }

    .info-block-one .inner-box .upper-box h3 {
        font-size: 20px;
    }
}

@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: 20px;
    }

    .info-block-one .inner-box .upper-box .light-icon {
        right: 20px;
        font-size: 50px;
    }

    .info-block-one .inner-box .upper-box h3 {
        font-size: 18px;
    }

    .info-block-one .inner-box .lower-content {
        padding: 20px;
    }

    .info-block-one .inner-box .single-item {
        margin-bottom: 15px;
    }

    .info-block-one .inner-box .single-item .icon-box {
        font-size: 20px;
        width: 36px;
        height: 36px;
    }

    .info-block-one .inner-box .single-item h6 {
        font-size: 11px;
    }

    .info-block-one .inner-box .single-item p {
        font-size: 13px;
    }

    .address-map-item {
        padding: 15px;
        margin-bottom: 15px;
    }

    .address-map-item .map-icon {
        font-size: 20px;
        width: 40px;
        height: 40px;
    }

    .address-map-item .map-content h6 {
        font-size: 11px;
    }

    .address-map-item .map-content p {
        font-size: 13px;
    }
}

@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: 18px;
    }

    .info-block-one .inner-box .upper-box .light-icon {
        right: 18px;
        font-size: 40px;
    }

    .info-block-one .inner-box .upper-box h3 {
        font-size: 16px;
    }

    .info-block-one .inner-box .upper-box p {
        font-size: 13px;
    }

    .info-block-one .inner-box .lower-content {
        padding: 18px;
    }

    .info-block-one .inner-box .single-item {
        margin-bottom: 12px;
        gap: 12px;
    }

    .info-block-one .inner-box .single-item .icon-box {
        font-size: 18px;
        width: 32px;
        height: 32px;
    }

    .info-block-one .inner-box .single-item h6 {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .info-block-one .inner-box .single-item p {
        font-size: 12px;
    }

    .address-map-item {
        padding: 12px;
        margin-bottom: 12px;
        gap: 12px;
    }

    .address-map-item .map-icon {
        font-size: 18px;
        width: 36px;
        height: 36px;
    }

    .address-map-item .map-content h6 {
        font-size: 10px;
        margin-bottom: 6px;
    }

    .address-map-item .map-content p {
        font-size: 12px;
    }

    .no-branches-message {
        padding: 50px 20px;
    }

    .no-branches-message i {
        font-size: 50px;
    }

    .no-branches-message p {
        font-size: 16px;
    }
}
