/* ======================================
   NOT: Her variant tamamen benzersiz sınıflar kullanır
   Ortak .mobile-contact-bar sınıfı KALDIRILDI
   ====================================== */

/* ======================================
   Tasarım 1 - Klasik (Radius yok)
   ====================================== */

.mobile-contact-bar-v1 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: none;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    border-radius: 0;
}

@media (max-width: 991px) {
    .mobile-contact-bar-v1 {
        display: block;
    }
}

.mobile-contact-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
}

.mobile-contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 8px 12px;
    transition: all 0.3s ease;
    flex: 1;
    border-radius: 0; /* Radius kaldırıldı */
}

.mobile-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    border-radius: 0; /* Radius kaldırıldı */
}

.mobile-contact-text {
    font-size: 11px;
    font-weight: 500;
    margin-top: 4px;
}

.mobile-contact-item.whatsapp {
    color: #25D366;
}

.mobile-contact-item.email {
    color: #EA4335;
}

.mobile-contact-item.phone {
    color: #4285F4;
}

.mobile-contact-item.location {
    color: #34A853;
}

.mobile-contact-item:active {
    transform: scale(0.95);
}

/* ======================================
   Tasarım 2 - Floating Bubbles (Farklı)
   ====================================== */

.mobile-contact-bar-v2 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: none;
    background: #f5f5f5;
    padding: 10px 0;
    border-top: 3px solid #e0e0e0;
}

@media (max-width: 991px) {
    .mobile-contact-bar-v2 {
        display: block;
    }
}

.mobile-contact-container-v2 {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    gap: 6px;
    padding: 0 10px;
}

.mobile-contact-item-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.mobile-contact-item-v2 .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 0;
    margin-bottom: 6px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    position: relative;
}

/* Pulse Animation Ring */
.mobile-contact-item-v2 .icon-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid currentColor;
    opacity: 0.5;
    animation: pulse-v2 2s ease-in-out infinite;
}

@keyframes pulse-v2 {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.mobile-contact-item-v2:active .icon-wrapper {
    transform: scale(1.2) translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.mobile-contact-item-v2.whatsapp-v2 .icon-wrapper {
    background: linear-gradient(135deg, #25D366 0%, #20b358 100%);
    color: #25D366;
}

.mobile-contact-item-v2.email-v2 .icon-wrapper {
    background: linear-gradient(135deg, #EA4335 0%, #d33426 100%);
    color: #EA4335;
}

.mobile-contact-item-v2.phone-v2 .icon-wrapper {
    background: linear-gradient(135deg, #4285F4 0%, #3578e5 100%);
    color: #4285F4;
}

.mobile-contact-item-v2.location-v2 .icon-wrapper {
    background: linear-gradient(135deg, #34A853 0%, #2d9647 100%);
    color: #34A853;
}

.mobile-contact-text-v2 {
    font-size: 9px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ======================================
   Tasarım 3 - Sağda Floating Butonlar
   ====================================== */

.mobile-contact-bar-v3 {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: none;
}

@media (max-width: 991px) {
    .mobile-contact-bar-v3 {
        display: block;
    }
}

.variant-3-container-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: transparent;
}

.variant-3-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.variant-3-item:active {
    transform: scale(1.1);
}

.variant-3-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.variant-3-icon svg {
    width: 24px;
    height: 24px;
}

.variant-3-text {
    display: none;
}

.variant-3-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.variant-3-email {
    background: linear-gradient(135deg, #EA4335 0%, #C5221F 100%);
}

.variant-3-phone {
    background: linear-gradient(135deg, #4285F4 0%, #1967D2 100%);
}

.variant-3-location {
    background: linear-gradient(135deg, #34A853 0%, #0F9D58 100%);
}

/* ======================================
   Tasarım 4 - Solda Modern Butonlar
   ====================================== */

.mobile-contact-bar-v4 {
    position: fixed;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: none;
}

@media (max-width: 991px) {
    .mobile-contact-bar-v4 {
        display: block;
    }
}

.variant-4-container-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: transparent;
}

.variant-4-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.variant-4-item:active {
    transform: scale(1.05);
}

.variant-4-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.variant-4-icon svg {
    width: 22px;
    height: 22px;
}

.variant-4-text {
    display: none;
}

.variant-4-whatsapp {
    background: #25D366;
}

.variant-4-email {
    background: #EA4335;
}

.variant-4-phone {
    background: #4285F4;
}

.variant-4-location {
    background: #34A853;
}

/* ======================================
   Responsive Ayarlar
   ====================================== */

@media (max-width: 374px) {
    .mobile-contact-item,
    .mobile-contact-item-v2 {
        padding: 6px 8px;
    }

    .mobile-contact-text,
    .mobile-contact-text-v2 {
        font-size: 9px;
    }

    .mobile-contact-item-v2 .icon-wrapper {
        width: 44px;
        height: 44px;
    }

    /* Dikey butonlar için küçük ekran ayarları */
    .mobile-contact-vertical-item {
        width: 48px;
        height: 48px;
    }

    .mobile-contact-vertical-item.whatsapp-vertical-left,
    .mobile-contact-vertical-item.email-vertical-left,
    .mobile-contact-vertical-item.phone-vertical-left,
    .mobile-contact-vertical-item.location-vertical-left {
        width: 46px;
        height: 46px;
    }

    .mobile-contact-vertical-item .vertical-text {
        font-size: 7px;
    }

    .mobile-contact-vertical-container.right,
    .mobile-contact-vertical-container.left {
        gap: 8px;
        padding: 8px 5px;
    }
}

/* Tablet ve üzeri için dikey butonları gizle */
@media (min-width: 992px) {
    .mobile-contact-bar.variant-3-vertical-right,
    .mobile-contact-bar.variant-4-vertical-left {
        display: none !important;
    }
}

