/* 
   ═══════════════════════════════════════════════════════════════
   TEMPLATES PREMIUM STYLES
   Enhanced Header & Footer Styles for IFRINA
   ═══════════════════════════════════════════════════════════════
*/

/* ===== TOPBAR PREMIUM ===== */
.topbar-premium {
    background: linear-gradient(135deg, #fff 0%, #fff8fc 100%);
    border-bottom: 1px solid rgba(255,105,180,0.1);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1030;
}

.topbar-premium .social-links {
    display: flex;
    gap: 0.5rem;
}

.topbar-premium .social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,105,180,0.1);
    color: #ff69b4;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.topbar-premium .social-icon:hover {
    background: #ff69b4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,105,180,0.3);
}

.topbar-premium .user-menu-mini .user-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(255,105,180,0.05);
}

.topbar-premium .user-menu-mini .user-link:hover {
    color: #ff69b4;
    background: rgba(255,105,180,0.1);
}

/* ===== NAVBAR PREMIUM ===== */
.navbar-premium {
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,240,245,0.95) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(255,105,180,0.15);
    box-shadow: 0 8px 32px rgba(255,105,180,0.08);
    transition: all 0.3s ease;
}

.navbar-premium.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(25px);
}

/* ===== LOGO ENHANCED ===== */
.logo-img {
    height: 75px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.logo-img:hover {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 8px 16px rgba(255,105,180,0.2)) brightness(1.1);
}

/* ===== SEARCH BAR ===== */
.search-container {
    position: relative;
    flex: 0 0 200px;
}

.search-input-wrapper {
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 0.5rem 2.5rem 0.5rem 0.75rem;
    border: 2px solid rgba(255,105,180,0.2);
    border-radius: 20px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    font-size: 0.85rem;
    transition: all 0.3s ease;
    outline: none;
}

.search-input:focus {
    border-color: #ff69b4;
    background: white;
    box-shadow: 0 4px 20px rgba(255,105,180,0.15);
    width: 250px;
}

.search-btn {
    position: absolute;
    right: 3px;
    top: 50%;
    transform: translateY(-50%);
    background: #ff69b4;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.search-btn:hover {
    background: #ff1493;
    transform: translateY(-50%) scale(1.1);
}

.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.search-input:focus + .search-btn + .search-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ===== MEGA MENU ===== */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,105,180,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s ease;
    z-index: 1000;
    margin-top: 1rem;
}

.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-content {
    padding: 2rem;
}

.mega-menu-content .row > div {
    padding: 1rem;
}

.mega-menu-content h6 {
    color: #ff69b4;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mega-menu-content a {
    display: block;
    color: #666;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.mega-menu-content a:hover {
    color: #ff69b4;
    padding-left: 1rem;
}

.mega-menu-content .app-download {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
}

.mega-menu-content .app-download p {
    margin: 0 0 0.5rem 0;
    font-size: 0.8rem;
}

/* ===== USER AVATAR ===== */
.user-avatar {
    position: relative;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255,105,180,0.3);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff1493;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.user-dropdown {
    min-width: 200px;
}

.user-dropdown .dropdown-header {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    padding: 1rem;
    margin: -0.5rem -1rem 1rem -1rem;
}

/* ===== NAVIGATION PREMIUM ===== */
.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,105,180,0.1), transparent);
    transition: left 0.6s ease;
}

.navbar-nav .nav-link:hover::before {
    left: 100%;
}

.navbar-nav .nav-link:hover {
    color: #ff69b4 !important;
    background: rgba(255,105,180,0.05);
    transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
    color: #ff69b4 !important;
    background: rgba(255,105,180,0.1);
    font-weight: 600;
}

.navbar-nav .nav-link i {
    font-size: 1rem;
    color: #ff69b4;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover i {
    transform: scale(1.1);
    color: #ff1493;
}

.navbar-nav .nav-link.active i {
    color: #ff1493;
}

/* ===== MEGA MENU PREMIUM ===== */
.mega-menu {
    border: none;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    background: white;
    margin-top: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255,105,180,0.1);
    backdrop-filter: blur(10px);
}

.mega-menu-content h6 {
    color: #ff69b4;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mega-menu-content a {
    color: #666;
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    border-radius: 10px;
    padding-left: 0.5rem;
}

.mega-menu-content a:hover {
    color: #ff69b4;
    background: rgba(255,105,180,0.05);
    transform: translateX(5px);
    padding-left: 1rem;
}

/* ===== USER AVATAR PREMIUM ===== */
.user-avatar-link {
    position: relative;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
}

.user-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255,105,180,0.3);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ffd700;
    color: #333;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    border: 2px solid white;
    animation: pulse 2s ease-in-out infinite;
}

/* ===== USER DROPDOWN PREMIUM ===== */
.user-dropdown {
    min-width: 200px;
    border: none;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    background: white;
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid rgba(255,105,180,0.1);
    backdrop-filter: blur(10px);
}

.user-dropdown .dropdown-header {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    padding: 1rem;
    margin: -0.5rem -1rem 1rem -1rem;
    border-radius: 15px 15px 0 0;
}

.user-dropdown .dropdown-item {
    color: #666;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.user-dropdown .dropdown-item:hover {
    color: #ff69b4;
    background: rgba(255,105,180,0.05);
    transform: translateX(5px);
}

.user-dropdown .dropdown-item i {
    color: #ff69b4;
    margin-right: 0.5rem;
}

/* ===== SEARCH BAR PREMIUM ===== */
.search-container {
    position: relative;
    margin-right: 1rem;
}

.search-input {
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,105,180,0.2);
    border-radius: 50px;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    color: #333;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.search-input:focus {
    outline: none;
    border-color: #ff69b4;
    box-shadow: 0 0 0 3px rgba(255,105,180,0.1);
    background: white;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(255,105,180,0.3);
}

/* ===== NAVIGATION BUTTONS PREMIUM ===== */
.nav-btns .btn {
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-pink {
    background: transparent;
    border: 2px solid #ff69b4;
    color: #ff69b4;
}

.btn-outline-pink:hover {
    background: #ff69b4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,105,180,0.3);
}

.btn-pink {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    border: none;
    color: white;
    box-shadow: 0 8px 25px rgba(255,105,180,0.3);
}

.btn-pink:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255,105,180,0.4);
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

/* ===== LANGUAGE SWITCHER ===== */
.language-switcher-btn {
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,105,180,0.2);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    color: #ff69b4;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.language-switcher-btn:hover {
    background: rgba(255,105,180,0.1);
    border-color: #ff69b4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,105,180,0.2);
}

.language-switcher-btn i {
    font-size: 1rem;
    color: #ff69b4;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid rgba(255,105,180,0.2);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 0.5rem;
    min-width: 150px;
    display: none;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #666;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.language-option:hover {
    background: rgba(255,105,180,0.05);
    color: #ff69b4;
    transform: translateX(5px);
}

.language-option .flag {
    font-size: 1.2rem;
}

/* ===== SEARCH BAR REPOSITIONED ===== */
.search-container {
    position: relative;
}

.search-input-wrapper {
    position: relative;
}

.search-input {
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,105,180,0.2);
    border-radius: 50px;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    color: #333;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 200px;
}

.search-input:focus {
    outline: none;
    border-color: #ff69b4;
    box-shadow: 0 0 0 3px rgba(255,105,180,0.1);
    background: white;
    width: 250px;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(255,105,180,0.3);
}

/* ===== LOGO SIZE ADJUSTMENT ===== */
.logo-img {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-img:hover {
    transform: scale(1.05);
}

/* ===== NAVIGATION LINKS SIZE ===== */
.navbar-nav .nav-link {
    font-size: 0.9rem !important;
}

/* ===== RESPONSIVE NAVIGATION ===== */
@media (max-width: 991px) {
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0.25rem 0;
    }
    
    .mega-menu {
        margin-top: 0.5rem;
        padding: 1rem;
    }
    
    .search-container {
        margin: 1rem 0;
    }
    
    .nav-btns {
        margin-top: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-btns .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== BUTTONS PREMIUM ===== */
.btn-pink-glow {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255,105,180,0.4);
}

.btn-pink-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-pink-glow:hover::before {
    left: 100%;
}

.btn-pink-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,105,180,0.6);
    color: white;
    text-decoration: none;
}

.btn-outline-pink {
    background: transparent;
    border: 2px solid #ff69b4;
    color: #ff69b4;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-outline-pink:hover {
    background: #ff69b4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,105,180,0.3);
}

.btn-pink-sm {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-pink-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,105,180,0.3);
}

/* ===== FOOTER PREMIUM ===== */
.footer-premium {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.footer-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.footer-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255,105,180,0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(255,215,0,0.1) 2px, transparent 2px);
    background-size: 50px 50px;
    animation: float-particles 20s linear infinite;
}

.footer-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255,105,180,0.05) 0%, 
        transparent 50%, 
        rgba(255,215,0,0.05) 100%);
}

.footer-brand-section {
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    color: #ff69b4;
    transform: translateY(-2px);
}

.logo-accent {
    color: #ffd700;
    font-weight: 400;
}

.footer-description {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ===== FOOTER STATS ===== */
.footer-stats-premium {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-stats-premium .stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.05);
    padding: 0.75rem 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255,105,180,0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.footer-stats-premium .stat-item:hover {
    background: rgba(255,105,180,0.1);
    transform: translateY(-2px);
}

.footer-stats-premium .stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.footer-stats-premium .stat-content {
    display: flex;
    flex-direction: column;
}

.footer-stats-premium .stat-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffd700;
    line-height: 1;
}

.footer-stats-premium .stat-label {
    font-size: 0.8rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== FOOTER SOCIAL ===== */
.footer-social-enhanced h6 {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    color: #cccccc;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255,105,180,0.2);
    color: white;
    transform: translateY(-2px);
}

.social-link.facebook:hover {
    background: rgba(59, 89, 152, 0.2);
}

.social-link.linkedin:hover {
    background: rgba(0, 119, 181, 0.2);
}

.social-link.tiktok:hover {
    background: rgba(0, 0, 0, 0.2);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888, #2d4bd8, #00a8ff);
}

/* ===== FOOTER SECTIONS ===== */
.footer-section {
    position: relative;
    z-index: 1;
}

.footer-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-link:hover {
    color: #ff69b4;
    padding-left: 1rem;
}

/* ===== FOOTER NEWSLETTER ===== */
.footer-newsletter-desc {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-newsletter-form {
    margin-bottom: 2rem;
}

.newsletter-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.input-wrapper {
    position: relative;
    flex: 1;
}

.newsletter-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 2px solid rgba(255,105,180,0.3);
    border-radius: 25px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-input:focus {
    border-color: #ff69b4;
    background: rgba(255,255,255,0.15);
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #ff69b4;
}

.newsletter-btn {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,105,180,0.3);
}

.newsletter-feedback {
    margin-top: 0.5rem;
}

.feedback-message {
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.8rem;
}

.feedback-message.success {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.feedback-message.error {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

/* ===== FOOTER CONTACT ===== */
.footer-contact-info h6 {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cccccc;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-item i {
    color: #ff69b4;
    width: 16px;
}

/* ===== PAYMENT METHODS ===== */
.footer-payment-methods h6 {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    color: #cccccc;
}

.payment-icons i {
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    color: #ffd700;
    transform: translateY(-2px);
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    position: relative;
    z-index: 1;
}

.footer-copyright p {
    color: #cccccc;
    margin-bottom: 1rem;
}

.footer-brand-link {
    color: #ff69b4;
    text-decoration: none;
    font-weight: 600;
}

.footer-badges {
    display: flex;
    gap: 0.5rem;
}

.footer-badges .badge {
    background: rgba(255,105,180,0.2);
    color: #ff69b4;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.legal-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.legal-link:hover {
    color: #ff69b4;
}

/* ===== CHAT WIDGET ===== */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-toggle {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255,105,180,0.4);
    position: relative;
}

.chat-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255,105,180,0.6);
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff1493;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    animation: pulse-badge 2s ease-in-out infinite;
}

.chat-window {
    position: absolute;
    bottom: 100%;
    right: 0;
    width: 350px;
    height: 450px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    overflow: hidden;
}

.chat-window.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-header {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-details h6 {
    margin: 0;
    font-size: 0.9rem;
}

.chat-status {
    font-size: 0.7rem;
    opacity: 0.8;
}

.chat-status.online::before {
    content: '•';
    color: #4caf50;
    margin-right: 0.25rem;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.chat-close:hover {
    opacity: 1;
}

.chat-messages {
    height: calc(100% - 140px);
    overflow-y: auto;
    padding: 1rem;
    background: #f8f9fa;
}

.chat-message {
    margin-bottom: 1rem;
    display: flex;
}

.chat-message.user {
    justify-content: flex-end;
}

.chat-message .message-content {
    max-width: 80%;
    padding: 0.75rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.chat-message.user .message-content {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
}

.chat-message p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.chat-input {
    padding: 1rem;
    border-top: 1px solid #e9ecef;
}

.chat-input form {
    display: flex;
    gap: 0.5rem;
}

.chat-input input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #dee2e6;
    border-radius: 25px;
    font-size: 0.9rem;
    outline: none;
}

.chat-input input:focus {
    border-color: #ff69b4;
}

.chat-send {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-send:hover {
    transform: scale(1.1);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(255,105,180,0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255,105,180,0.6);
    color: white;
    text-decoration: none;
}

/* ===== ANIMATIONS ===== */
@keyframes float-particles {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(50px) translateY(-50px);
    }
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
    .navbar-premium {
        background: rgba(255,255,255,0.98);
    }
    
    .search-container {
        display: none !important;
    }
    
    .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(255,240,245,0.5);
        margin-top: 0;
    }
    
    .footer-stats-premium {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-links-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-legal-links {
        justify-content: center;
    }
    
    .chat-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .chat-window {
        width: 300px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .topbar-premium {
        display: none !important;
    }
    
    .navbar-premium {
        padding: 0.5rem 0;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .footer-stats-premium .stat-item {
        justify-content: center;
        text-align: center;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .chat-window {
        width: 280px;
        height: 350px;
        right: -20px;
    }
    
    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .footer-premium .container {
        padding: 0 1rem;
    }
    
    .footer-stats-premium .stat-item {
        padding: 0.5rem;
    }
    
    .footer-stats-premium .stat-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .footer-stats-premium .stat-number {
        font-size: 1rem;
    }
    
    .chat-window {
        width: 250px;
        height: 300px;
    }
    
    .chat-messages {
        height: calc(100% - 120px);
    }
}
