/* ===================================
   MOBILE HEADER - Influencer360
   ================================== */

/* Mobile Header Container */
header .mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999; /* Desktop header ile aynı seviye */
    padding: 16px 0;
    background: transparent;
}

.mobile-header-container {
    max-width: 100%;
    padding: 0 20px;
}

.mobile-header-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 100%;
}

/* Logo */
.mobile-header-logo {
    flex-shrink: 0;
}

.mobile-header-logo img {
    height: 32px;
    width: auto;
}

/* Video Siparişi Button - Proper Size */
.mobile-header-content .header-video-btn-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(233, 30, 99, 0.25);
    border-radius: 50px;
    color: #E91E63;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.15);
    white-space: nowrap;
    min-width: 160px;
}

.mobile-header-content .header-video-btn-mobile::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.mobile-header-content .header-video-btn-mobile:hover::before {
    left: 100%;
}

.mobile-header-content .header-video-btn-mobile svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
    color: #E91E63;
    flex-shrink: 0;
}

.mobile-header-content .header-video-btn-mobile:hover {
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
    border-color: #E91E63;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.3);
}

.mobile-header-content .header-video-btn-mobile:hover svg {
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.mobile-header-content .header-video-btn-mobile:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.25);
}

/* Hamburger Menu - Modern & Clean (No Background) */
.mobile-hamburger {
    background: transparent !important;
    border: none !important;
    padding: 8px !important;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: none !important;
}

.mobile-hamburger span {
    width: 26px;
    height: 3px;
    background: #1d1d1f !important;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-hamburger:hover span {
    background: #1d1d1f !important; /* Normal durumda koyu */
}

.mobile-hamburger:focus {
    outline: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

.mobile-hamburger:active {
    background: transparent !important;
    box-shadow: none !important;
}

.mobile-hamburger:focus span,
.mobile-hamburger:active span {
    background: #1d1d1f !important; /* Her zaman koyu */
}

/* Remove Bootstrap default button styles */
.mobile-hamburger.btn {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.mobile-hamburger.btn:hover,
.mobile-hamburger.btn:focus,
.mobile-hamburger.btn:active,
.mobile-hamburger.btn:focus-visible {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* ===================================
   MOBILE MENU OFFCANVAS
   ================================== */

.mobile-menu-offcanvas {
    width: 380px !important;
    max-width: 380px !important;
    background: #ffffff;
}

.mobile-menu-offcanvas .offcanvas-header {
    display: none;
}

/* Menu Header */
.mobile-menu-header {
    padding: 24px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-menu-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(163, 230, 163, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #2d5f2d;
}

.mobile-menu-badge svg {
    width: 18px;
    height: 18px;
}

.mobile-menu-close {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #1d1d1f; /* Koyu siyah - görünür */
    transition: all 0.3s ease;
}

.mobile-menu-close svg {
    color: #1d1d1f !important; /* Force koyu renk */
    stroke: #1d1d1f !important;
}

.mobile-menu-close:hover {
    color: #E91E63;
    transform: rotate(90deg);
}

.mobile-menu-close:hover svg {
    color: #E91E63 !important;
    stroke: #E91E63 !important;
}

/* Menu Body */
.mobile-menu-body {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Navigation Links - Modern & Bold */
.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu-link {
    padding: 16px 0;
    font-size: 17px;
    font-weight: 600;
    color: #1d1d1f;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f3f4f6;
}

.mobile-menu-link:hover {
    color: #E91E63;
    padding-left: 8px;
}

.mobile-menu-link:last-child {
    border-bottom: none;
}

/* CTA Section */
.mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: #1d1d1f;
    color: #ffffff !important;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-cta-button:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #ffffff !important;
}

.mobile-cta-button svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
}

.mobile-form-link {
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-form-link:hover {
    color: #E91E63;
}

/* Contact Section - Modern Colors */
.mobile-menu-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-contact-title {
    font-size: 22px;
    font-weight: 700;
    color: #1d1d1f;
    margin: 0;
}

.mobile-contact-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-contact-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.mobile-contact-phone {
    background: rgba(59, 130, 246, 0.1);
    color: #1e40af;
}

.mobile-contact-phone:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateX(4px);
}

.mobile-contact-email {
    background: rgba(236, 72, 153, 0.1);
    color: #be185d;
}

.mobile-contact-email:hover {
    background: rgba(236, 72, 153, 0.2);
    transform: translateX(4px);
}

.mobile-contact-location {
    background: rgba(251, 191, 36, 0.1);
    color: #a16207;
}

.mobile-contact-location:hover {
    background: rgba(251, 191, 36, 0.2);
    transform: translateX(4px);
}

/* ===================================
   RESPONSIVE ADJUSTMENTS
   ================================== */

/* Small phones - Hide text, show only icon */
@media (max-width: 375px) {
    .mobile-header-content .header-video-btn-mobile span {
        display: none;
    }
    
    .mobile-header-content .header-video-btn-mobile {
        padding: 12px;
        min-width: 48px;
        max-width: 48px;
    }
    
    .mobile-header-content .header-video-btn-mobile svg {
        width: 20px;
        height: 20px;
    }
    
    .mobile-header-logo img {
        height: 28px;
    }
    
    .mobile-header-content {
        padding: 10px 16px;
        gap: 12px;
    }
}

/* Larger phones */
@media (min-width: 376px) and (max-width: 480px) {
    .mobile-header-content .header-video-btn-mobile {
        font-size: 13px;
        padding: 10px 20px;
    }
}

/* Hide mobile header on desktop */
@media (min-width: 992px) {
    header .mobile {
        display: none !important;
    }
}
