/* Eker İletişim Bilgileri Widget Stili */
:root {
    --eker-transition: all 0.3s ease;
}

.eker-contact-container {
    font-family: 'Arial', sans-serif;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.eker-contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

/* Standart Kart Düzeni */
.eker-contact-layout-standard .eker-contact-card {
    flex: 0 0 calc(50% - 15px);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: var(--eker-transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Genişletilmiş Kart Düzeni */
.eker-contact-layout-expanded .eker-contact-card {
    flex: 0 0 100%;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: var(--eker-transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.eker-contact-layout-expanded .eker-contact-title,
.eker-contact-layout-expanded .eker-contact-divider {
    flex: 0 0 100%;
}

.eker-contact-layout-expanded .eker-contact-info-wrapper {
    flex: 0 0 calc(50% - 15px);
    margin-right: 30px;
}

.eker-contact-layout-expanded .eker-contact-social {
    flex: 0 0 calc(50% - 15px);
    align-self: flex-start;
    margin-top: 20px;
}

.eker-contact-layout-expanded .eker-contact-map {
    flex: 0 0 100%;
    margin-top: 30px;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.eker-contact-layout-expanded .eker-contact-map iframe {
    height: 100%;
}

/* Sekmeli Düzen */
.eker-contact-layout-tabs .eker-contact-wrapper {
    display: block;
}

.eker-contact-tabs {
    width: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.eker-contact-tab-buttons {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    background-color: #f9f9f9;
}

.eker-contact-tab-button {
    flex: 1;
    border: none;
    background: transparent;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--eker-transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.eker-contact-tab-button.active {
    background-color: white;
}

.eker-contact-tab-button.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    transition: var(--eker-transition);
}

.eker-contact-tab-button:hover:not(.active) {
    background-color: #f5f5f5;
}

.eker-contact-tab-panel {
    display: none;
    padding: 30px;
}

.eker-contact-tab-panel.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Genel Kart Stilleri */
.eker-contact-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.eker-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    transition: var(--eker-transition);
}

.eker-contact-card:hover::before {
    width: 7px;
}

.eker-contact-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.eker-contact-divider {
    width: 60px;
    height: 3px;
    margin-bottom: 30px;
    position: relative;
}

.eker-contact-divider::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 3px;
}

.eker-contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 25px;
}

.eker-contact-info {
    display: flex;
    align-items: flex-start;
}

.eker-contact-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.eker-contact-icon i.fas,
.eker-contact-icon i.fa {
    font-size: 16px;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    display: inline-block !important;
}

.eker-contact-info:hover .eker-contact-icon {
    transform: scale(1.1);
}

.eker-contact-info span {
    line-height: 1.6;
    font-size: 15px;
    padding-top: 3px;
}

.eker-contact-link {
    text-decoration: none;
    transition: var(--eker-transition);
    position: relative;
}

.eker-contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    transition: var(--eker-transition);
}

.eker-contact-link:hover::after {
    width: 100%;
}

.eker-contact-hours {
    line-height: 1.8;
    font-size: 15px;
}

/* Sosyal Medya Butonları */
.eker-contact-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 25px;
}

.eker-social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.eker-social-icon i.fab,
.eker-social-icon i.fa {
    font-size: 18px;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    display: inline-block !important;
}

.eker-social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Harita Stili */
.eker-contact-map {
    margin-top: 25px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.eker-contact-map iframe {
    width: 100%;
    height: 250px;
    border: none;
    display: block;
}

/* Duyarlı Tasarım */
@media (max-width: 992px) {
    .eker-contact-layout-standard .eker-contact-card {
        flex: 0 0 100%;
    }
    
    .eker-contact-layout-expanded .eker-contact-info-wrapper,
    .eker-contact-layout-expanded .eker-contact-social {
        flex: 0 0 100%;
        margin-right: 0;
    }
    
    .eker-contact-layout-expanded .eker-contact-social {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .eker-contact-container {
        padding: 10px;
    }
    
    .eker-contact-tab-button {
        padding: 12px 10px;
        font-size: 14px;
    }
    
    .eker-contact-tab-panel {
        padding: 20px;
    }
    
    .eker-contact-card {
        padding: 25px;
    }
    
    .eker-contact-title {
        font-size: 22px;
    }
    
    .eker-contact-icon {
        width: 36px;
        height: 36px;
    }
} 