/* Laikaat Amouji - Professional Social Media Services CSS */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Cairo', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #eeeeee 0%, #ffffff 100%);
    min-height: 100vh;
    color: #2d3748;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #4ECDC4;
}

.search-box {
    position: relative;
}

.search-box input {
    padding: 10px 40px 10px 15px;
    border: 2px solid #4ECDC4;
    border-radius: 25px;
    outline: none;
    font-family: 'Cairo', sans-serif;
    width: 250px;
}

.search-box i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #4ECDC4;
    cursor: pointer;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #4ECDC4;
}

.logo img {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: #4ECDC4;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #4ECDC4;
}

.cta-button {
    background: #4ECDC4;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.cta-button:hover {
    background: #45b7aa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

/* Hero Section */
.hero {
    margin-top: 120px;
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #4ECDC4;
    margin-bottom: 20px;
}

.brand {
    color: #4ECDC4;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
}

.hero-text p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-image {
    position: relative;
    text-align: center;
}

.character-container {
    position: relative;
    display: inline-block;
    animation: containerPulse 8s ease-in-out infinite;
}

@keyframes containerPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

.character-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(34, 186, 206, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-character {
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    animation: heroFloat 6s ease-in-out infinite;
    transform-origin: center;
}

@keyframes heroFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
    }
    25% {
        transform: translateY(-15px) scale(1.02);
    }
    50% { 
        transform: translateY(-25px) scale(1.05);
    }
    75% {
        transform: translateY(-15px) scale(1.02);
    }
}

.social-icons-float {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.social-icons-float i {
    position: absolute;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #22bace, #17a2b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(34, 186, 206, 0.3));
}

.social-icons-float i:nth-child(1) { 
    top: 10%; 
    left: 10%; 
    animation-delay: -0.5s;
    color: #E1306C;
    -webkit-text-fill-color: #E1306C;
}
.social-icons-float i:nth-child(2) { 
    top: 20%; 
    right: 15%; 
    animation-delay: -1s;
    color: #1877F2;
    -webkit-text-fill-color: #1877F2;
}
.social-icons-float i:nth-child(3) { 
    bottom: 30%; 
    left: 20%; 
    animation-delay: -1.5s;
    color: #1DA1F2;
    -webkit-text-fill-color: #1DA1F2;
}
.social-icons-float i:nth-child(4) { 
    bottom: 20%; 
    right: 10%; 
    animation-delay: -2s;
    color: #FF0000;
    -webkit-text-fill-color: #FF0000;
}
.social-icons-float i:nth-child(5) { 
    top: 50%; 
    left: -10%; 
    animation-delay: -2.5s;
    color: #000000;
    -webkit-text-fill-color: #000000;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-25px) rotate(10deg) scale(1.1);
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.8);
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.9);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #4ECDC4;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.service-card:hover .service-icon::before {
    transform: translateX(100%);
}

/* Platform Colors */
.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.youtube { background: linear-gradient(45deg, #FF0000, #CC0000); }
.tiktok { background: linear-gradient(45deg, #000000, #ff0050); }
.threads { background: linear-gradient(45deg, #000000, #333333); }
.twitter { background: linear-gradient(45deg, #1DA1F2, #0d8bd9); }
.linkedin { background: linear-gradient(45deg, #0077B5, #005582); }
.snapchat { background: linear-gradient(45deg, #FFFC00, #FFEB3B); }
.x { background: linear-gradient(45deg, #000000, #14171A); }
.facebook { background: linear-gradient(45deg, #3b5998, #8b9dc3); }
.google { background: linear-gradient(45deg, #4285f4, #34a853, #fbbc05, #ea4335); }
.telegram { background: linear-gradient(45deg, #0088cc, #005582); }
.kick { background: linear-gradient(45deg, #53fc18, #00d4aa); }
.whatsapp { background: linear-gradient(45deg, #25D366, #128C7E); }
.twitch { background: linear-gradient(45deg, #9146FF, #6441a4); }
.spotify { background: linear-gradient(45deg, #1DB954, #1ed760); }

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Footer */
.footer {
    background: #4ECDC4;
    color: white;
    padding: 40px 0;
    margin-top: 0;
}

.footer-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.customer-avatars {
    display: flex;
    gap: -10px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-left: -10px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-text h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.stats-text p {
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #4ECDC4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(78, 205, 196, 0.4);
    transition: all 0.3s;
    z-index: 1000;
}

.chat-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(78, 205, 196, 0.6);
}

/* Responsive Design */
/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #4ECDC4;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1998;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: white;
    z-index: 1999;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-sidebar-header {
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-sidebar-close {
    background: none;
    border: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
}

.mobile-nav-menu li {
    border-bottom: 1px solid #eee;
}

.mobile-nav-menu a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
    background: #f0f9ff;
    color: #4ECDC4;
    padding-right: 30px;
}

.mobile-contact-info {
    padding: 20px;
    border-top: 2px solid #eee;
    margin-top: 20px;
}

.mobile-contact-info a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.mobile-contact-info a i {
    color: #4ECDC4;
    font-size: 18px;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .top-bar {
        padding: 10px 0;
    }
    
    .contact-info,
    .search-box {
        display: none;
    }
    
    .main-nav {
        padding: 10px 0;
    }
    
    .nav-menu,
    .cta-button {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-character {
        max-width: 280px;
    }
    
    .social-icons-float i {
        font-size: 1.8rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .footer-stats {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text h2 {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .mobile-sidebar {
        width: 260px;
    }
}