/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Variables CSS - Thème clair */
:root {
    --color-white: #ffffff;
    --color-black: #0a0a0a;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #6b7280;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-900: #1a1a1a;
    --color-accent: #2563eb;
    --color-accent-light: #3b82f6;
    --color-bg-primary: #ffffff;
    --color-bg-secondary: #ffffff;
    --color-bg-card: #f8fafc;
    --color-text-primary: #0a0a0a;
    --color-text-secondary: #4b5563;
    --color-border: #2563eb;
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    --color-whatsapp: #25D366;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    --gradient-secondary: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-full: 50px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--color-black);
    background: var(--color-white);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.fade-in-up:nth-child(1) { animation-delay: 0.1s; }
.fade-in-up:nth-child(2) { animation-delay: 0.2s; }
.fade-in-up:nth-child(3) { animation-delay: 0.3s; }

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    padding: 140px 0 80px;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #f59e0b;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-black);
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.badge-icon {
    font-size: 1rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-gray-600);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-gray-200);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-600);
    line-height: 1.6;
}

/* Trust indicators */
.hero-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gray-600);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item svg {
    color: var(--color-success);
    flex-shrink: 0;
}

/* ============================================
   CONTACT OPTIONS
   ============================================ */

.contact-options {
    padding: 80px 0;
    background: var(--color-white);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.option-card {
    background: var(--color-bg-card);
    border: 2px solid var(--color-accent);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.option-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.option-card:hover::before {
    opacity: 1;
}

.option-card.premium {
    border: 2px solid var(--color-accent);
    background: var(--color-bg-card);
}

.option-card.premium::before {
    opacity: 1;
}

.option-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.option-icon {
    width: 60px;
    height: 60px;
    background: rgba(91, 91, 214, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
    transition: all 0.3s ease;
}

.option-card:hover .option-icon {
    background: rgba(91, 91, 214, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.option-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 1rem;
}

.option-description {
    font-size: 1.0625rem;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.option-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.option-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0;
    color: var(--color-black);
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--color-gray-200);
}

.option-features li:last-child {
    border-bottom: none;
}

.option-features svg {
    color: var(--color-success);
    flex-shrink: 0;
}

.option-timing {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--color-gray-200);
    border-radius: 12px;
    font-size: 0.875rem;
    color: var(--color-gray-900);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    width: 100%;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    border-radius: 12px;
}

.btn-primary:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.btn-secondary,
.btn-outline {
    background: var(--color-black);
    color: var(--color-white);
    border: 1px solid var(--color-black);
    border-radius: 12px;
}

.btn-secondary:hover,
.btn-outline:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--color-white);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 12px;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.btn-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* ============================================
   INFO SECTION
   ============================================ */

.info-section {
    padding: 80px 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-gray-200);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    text-align: center;
    padding: 2rem;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(91, 91, 214, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--color-accent);
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.75rem;
}

.info-card p {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
    line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 100px 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-gray-200);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    width: auto;
    padding: 0.875rem 2rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1023px) {
    .options-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 160px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-trust {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .trust-item {
        font-size: 0.85rem;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .option-card {
        padding: 2rem;
    }
    
    .option-title {
        font-size: 1.5rem;
    }
    
    .contact-options,
    .info-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 479px) {
    .hero {
        padding: 140px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .option-card {
        padding: 1.5rem;
    }
    
    .option-icon {
        width: 50px;
        height: 50px;
    }
    
    .option-title {
        font-size: 1.25rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
}

/* ============================================
   SOCIAL NETWORKS SECTION
   ============================================ */

.social-section {
    padding: 80px 0;
    background: var(--color-white);
    position: relative;
}

.social-content {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.social-header {
    margin-bottom: 3rem;
}

.social-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(91, 91, 214, 0.1);
    border: 1px solid rgba(91, 91, 214, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.social-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 1rem;
}

.social-header p {
    font-size: 1.25rem;
    color: var(--color-gray-600);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}


.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.social-card {
    background: var(--color-bg-card);
    border: 2px solid var(--color-accent);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(59, 130, 246, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.social-card:hover::before {
    opacity: 1;
}

.social-card:hover {
    transform: translateY(-12px);
    border-color: var(--color-accent);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15);
}

.social-card > * {
    position: relative;
    z-index: 2;
}

/* Card Headers */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.platform-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.platform-badge.discord {
    background: rgba(88, 101, 242, 0.1);
    color: #5865f2;
    border: 1px solid rgba(88, 101, 242, 0.2);
}

.platform-badge.linkedin {
    background: rgba(0, 119, 181, 0.1);
    color: #0077b5;
    border: 1px solid rgba(0, 119, 181, 0.2);
}

.platform-badge.tiktok {
    background: rgba(255, 0, 80, 0.1);
    color: #ff0050;
    border: 1px solid rgba(255, 0, 80, 0.2);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}


/* Discord Server Card */
.discord-server {
    border: 2px solid rgba(88, 101, 242, 0.2);
}

.discord-server:hover {
    border-color: rgba(88, 101, 242, 0.4);
    box-shadow: 0 25px 50px rgba(88, 101, 242, 0.2);
}

.server-preview {
    margin-bottom: 1.5rem;
}

.server-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.server-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary);
}

.server-avatar {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary);
    font-weight: 700;
    font-size: 0.875rem;
}

.server-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.25rem;
}

.server-stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-gray-600);
}

.online-indicator {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.server-channels {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.channel {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: var(--color-gray-100);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--color-gray-600);
    position: relative;
}

.channel.active {
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.2);
}

.channel-icon {
    font-size: 1rem;
}

.channel-count {
    margin-left: auto;
    color: var(--color-gray-500);
    font-size: 0.8rem;
}

.typing-indicator {
    display: flex;
    gap: 2px;
    margin-left: auto;
}

.typing-indicator span {
    width: 4px;
    height: 4px;
    background: #10b981;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.recent-activity {
    background: var(--color-gray-100);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.activity-header {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.75rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-gray-200);
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-avatar {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
    border-radius: 50%;
}

.activity-content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.activity-user {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-black);
}

.activity-action {
    font-size: 0.75rem;
    color: var(--color-gray-600);
}

.activity-time {
    font-size: 0.7rem;
    color: var(--color-gray-500);
}

.join-server-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
    color: var(--color-white);
    border-radius: 10rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.join-server-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(88, 101, 242, 0.4);
}

/* Discord Preview */
.discord-preview {
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.discord-preview-content {
    background: var(--color-gray-100);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

/* TikTok Video Preview */
.tiktok-video-preview {
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 0, 80, 0.1);
    max-height: 500px;
}

.tiktok-video-preview iframe {
    border: none;
    border-radius: 12px;
    background: transparent;
    width: 100%;
    height: 500px;
    min-height: 500px;
}

/* LinkedIn Preview Content */
.linkedin-preview-content {
    background: var(--color-gray-100);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.preview-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.preview-header h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.preview-header p {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    line-height: 1.5;
}

.linkedin-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--color-gray-600);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(37, 99, 235, 0.05);
    border-color: var(--color-accent);
    color: var(--color-black);
}

.feature-item svg {
    color: #0077b5;
    flex-shrink: 0;
}

/* LinkedIn Card Enhanced */
.linkedin-card {
    border: 2px solid rgba(0, 119, 181, 0.2);
}

.linkedin-card:hover {
    border-color: rgba(0, 119, 181, 0.4);
    box-shadow: 0 25px 50px rgba(0, 119, 181, 0.2);
}

.linkedin-preview {
    margin-bottom: 1.5rem;
}

.linkedin-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.linkedin-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary);
}

.avatar-circle {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary);
    font-weight: 700;
    font-size: 0.875rem;
}

.linkedin-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.linkedin-info p {
    font-size: 0.875rem;
    color: var(--color-gray-400);
    margin-bottom: 0.5rem;
}

.linkedin-stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--color-gray-500);
}

.post-preview.featured {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 119, 181, 0.1);
}

.post-badge {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.post-image-preview {
    margin: 0.75rem 0;
}

.image-placeholder {
    width: 100%;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-400);
}

.linkedin-insights {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 0.75rem;
}

.insight-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
}

.insight-label {
    font-size: 0.75rem;
    color: var(--color-gray-400);
}

.insight-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: #10b981;
}

/* TikTok Card Enhanced */
.tiktok-card {
    border: 2px solid rgba(255, 0, 80, 0.2);
}

.tiktok-card:hover {
    border-color: rgba(255, 0, 80, 0.4);
    box-shadow: 0 25px 50px rgba(255, 0, 80, 0.2);
}

.tiktok-preview {
    margin-bottom: 1.5rem;
}

.tiktok-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tiktok-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff0050 0%, #ff4081 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary);
}

.video-preview.trending {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 80, 0.1);
}

.video-overlay {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
}

.video-duration {
    background: rgba(0, 0, 0, 0.7);
    color: var(--color-text-primary);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.tiktok-trends {
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 0.75rem;
}

.trend-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trend-item:last-child {
    border-bottom: none;
}

.trend-hashtag {
    font-size: 0.875rem;
    color: #ff0050;
    font-weight: 600;
}

.trend-views {
    font-size: 0.75rem;
    color: var(--color-gray-400);
}


/* LinkedIn Card */
.linkedin-card {
    border: 2px solid rgba(0, 119, 181, 0.2);
}

.linkedin-card:hover {
    border-color: rgba(0, 119, 181, 0.4);
    box-shadow: 0 25px 50px rgba(0, 119, 181, 0.2);
}

.linkedin-preview {
    margin-bottom: 1.5rem;
}

.linkedin-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.linkedin-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary);
}

.linkedin-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.linkedin-info p {
    font-size: 0.875rem;
    color: var(--color-gray-400);
    margin-bottom: 0.5rem;
}

.linkedin-stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--color-gray-500);
}

.post-preview {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1rem;
}

.post-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.post-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    border-radius: 50%;
}

.post-info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.post-author {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
}

.post-time {
    font-size: 0.75rem;
    color: var(--color-gray-500);
}

.post-text {
    font-size: 0.875rem;
    color: var(--color-gray-300);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.post-engagement {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--color-gray-500);
}

.follow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    color: var(--color-white);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 119, 181, 0.4);
}

/* TikTok Card */
.tiktok-card {
    border: 2px solid rgba(255, 0, 80, 0.2);
}

.tiktok-card:hover {
    border-color: rgba(255, 0, 80, 0.4);
    box-shadow: 0 25px 50px rgba(255, 0, 80, 0.2);
}

.tiktok-preview {
    margin-bottom: 1.5rem;
}

.tiktok-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tiktok-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff0050 0%, #ff4081 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary);
}

.tiktok-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.25rem;
}

.tiktok-stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--color-gray-600);
}

.video-preview {
    background: var(--color-gray-100);
    border-radius: 12px;
    overflow: hidden;
}

.video-thumbnail {
    position: relative;
    height: 120px;
    background: linear-gradient(135deg, #ff0050 0%, #ff4081 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff0050;
}

.video-info {
    padding: 1rem;
}

.video-title {
    font-size: 0.875rem;
    color: var(--color-black);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.video-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--color-gray-600);
}

/* ============================================
   WHY CONTACT US SECTION
   ============================================ */

.why-contact-section {
    padding: 80px 0;
    background: var(--color-white);
    position: relative;
}

.why-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.why-contact-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-contact-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 1rem;
}

.why-contact-content > p {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-card {
    background: var(--color-bg-card);
    border: 2px solid var(--color-accent);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(59, 130, 246, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
}

.benefit-card > * {
    position: relative;
    z-index: 2;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(91, 91, 214, 0.1);
    border: 1px solid rgba(91, 91, 214, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--color-accent);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: rgba(91, 91, 214, 0.15);
    transform: scale(1.05);
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--color-gray-600);
    line-height: 1.6;
    font-size: 0.95rem;
}

.why-contact-cta {
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.why-contact-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 1rem;
}

.why-contact-cta p {
    color: var(--color-gray-600);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .social-header h2 {
        font-size: 2.5rem;
    }
    
    .social-header p {
        font-size: 1.125rem;
        margin-bottom: 3rem;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-card {
        padding: 1.5rem;
    }
    
    .server-header,
    .linkedin-header,
    .tiktok-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .server-channels {
        gap: 0.5rem;
    }
    
    .channel {
        padding: 0.375rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .post-preview {
        padding: 0.75rem;
    }
    
    .video-thumbnail {
        height: 100px;
    }
    
    .play-button {
        width: 40px;
        height: 40px;
    }
    
    .why-contact-content h2 {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .why-contact-cta {
        padding: 2rem;
    }
    
    .why-contact-cta h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 479px) {
    .social-header h2 {
        font-size: 2rem;
    }
    
    .social-card {
        padding: 1.25rem;
    }
    
    .server-icon,
    .linkedin-avatar,
    .tiktok-avatar {
        width: 40px;
        height: 40px;
    }
    
    .join-server-btn,
    .follow-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.footer {
    background: var(--color-bg-card);
    border-top: 1px solid var(--color-gray-200);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo-section {
    text-align: center;
    margin-bottom: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.footer-logo-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.footer-logo-top {
    display: none;
}

.footer-logo-img {
    width: auto;
    height: 70px;
    max-width: 300px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(1);
}

.footer-logo-section:hover .footer-logo-img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.footer-logo-icon {
    position: relative;
    width: 32px;
    height: 32px;
}

.footer-arrow {
    position: absolute;
    height: 2px;
    background: var(--color-accent);
    transform-origin: left;
    animation: growArrow 2s ease-in-out infinite;
    border-radius: 2px;
}

.footer-arrow:nth-child(1) {
    top: 8px;
    animation-delay: 0s;
}

.footer-arrow:nth-child(2) {
    top: 14px;
    animation-delay: 0.25s;
}

.footer-arrow:nth-child(3) {
    top: 20px;
    animation-delay: 0.5s;
}

.footer-logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-black);
    line-height: 1;
}

.footer-logo-agency {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    padding-left: 0;
    line-height: 1.2;
    margin-top: -2px;
}

.footer-description {
    color: var(--color-gray-600);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 8px;
    color: var(--color-gray-600);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(37, 99, 235, 0.1);
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: var(--color-gray-600);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--color-accent);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-gray-600);
    font-size: 0.9rem;
}

.contact-item svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid var(--color-gray-200);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-copyright {
    color: var(--color-gray-600);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.legal-link {
    color: var(--color-gray-600);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--color-accent);
}

.footer-bottom-badge {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid var(--color-accent);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    color: var(--color-accent);
    font-weight: 500;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-logo-section {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        text-align: center;
    }
    
    .footer-logo-main {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .footer-legal {
        gap: 1rem;
    }
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */

/* Floating buttons container */
.floating-btns-left {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.discord-btn-float {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
    transition: all 0.3s ease;
}

.discord-btn-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 25px rgba(88, 101, 242, 0.5);
}

.discord-btn-float svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 6px 16px rgba(37, 211, 102, 0.5),
        0 12px 32px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn:hover::before {
    opacity: 0.8;
    animation: whatsappPulse 1.5s ease-in-out infinite;
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    fill: white;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover svg {
    transform: scale(1.1);
}

.whatsapp-btn:active {
    transform: translateY(-2px) scale(1.02);
}

@keyframes whatsappPulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Responsive */
@media (max-width: 767px) {
    .floating-btns-left {
        bottom: 20px;
        left: 20px;
        gap: 12px;
    }
    
    .whatsapp-btn,
    .discord-btn-float {
        width: 54px;
        height: 54px;
    }
    
    .whatsapp-btn svg,
    .discord-btn-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 479px) {
    .floating-btns-left {
        bottom: 16px;
        left: 16px;
        gap: 10px;
    }
    
    .whatsapp-btn,
    .discord-btn-float {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-btn svg,
    .discord-btn-float svg {
        width: 26px;
        height: 26px;
    }
}

/* Scroll to top button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
}

.scroll-top-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.5);
    opacity: 1;
}

.scroll-top-btn svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .scroll-top-btn {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-top-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-divider {
        height: 30px;
    }
}



/* ============================================
   CAL.COM POPUP
   ============================================ */

.cal-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 2rem;
}

.cal-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.cal-popup-content {
    background: var(--color-white);
    border-radius: 12px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    z-index: 2001;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.cal-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    z-index: 2002;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cal-popup-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cal-popup-body {
    padding: 0;
    overflow: hidden;
}

.cal-popup-body iframe {
    width: 100%;
    height: 600px;
    border: none;
}

/* Mobile adjustments for popup */
@media (max-width: 768px) {
    .cal-popup {
        padding: 1rem;
    }
    
    .cal-popup-content {
        max-height: 95vh;
    }
    
    .cal-popup-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 35px;
        height: 35px;
    }
    
    .cal-popup-body iframe {
        height: 500px;
    }
}

/* ============================================
   DISCORD COMMUNITY CARD - REDESIGNED
   ============================================ */

/* Discord Community Card - Completely Redesigned */
.discord-community {
    border: 2px solid var(--color-accent);
    background: var(--color-bg-card);
}

.discord-community:hover {
    border-color: var(--color-accent);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15);
    background: var(--color-bg-card);
}

.discord-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-gray-200);
}

.discord-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.discord-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #5865f2 0%, #7289da 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3);
}

.discord-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.25rem;
}

.discord-info p {
    color: var(--color-gray-600);
    font-size: 0.875rem;
}


.discord-content {
    margin-bottom: 1.5rem;
}

.discord-widget-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 500px;
}

.discord-widget-container iframe {
    width: 100%;
    max-width: 350px;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

.discord-description {
    margin-bottom: 1.5rem;
}

.discord-description h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.75rem;
}

.discord-description p {
    color: var(--color-gray-600);
    line-height: 1.6;
}

.discord-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.discord-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--color-white);
    border-radius: 8px;
    border: 1px solid var(--color-gray-200);
    transition: all 0.3s ease;
}

.discord-features .feature-item:hover {
    background: rgba(88, 101, 242, 0.05);
    border-color: #5865f2;
}

.discord-features .feature-item svg {
    color: #5865f2;
    flex-shrink: 0;
}

.discord-features .feature-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-black);
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: rgba(88, 101, 242, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5865f2;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-black);
}

.feature-desc {
    font-size: 0.75rem;
    color: var(--color-gray-600);
}


.discord-join-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #5865f2 0%, #7289da 100%);
    color: var(--color-white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3);
}

.discord-join-btn:hover {
    background: linear-gradient(135deg, #4752c4 0%, #5b6eae 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
}

/* LinkedIn Card - Enhanced Header */
.linkedin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-gray-200);
}

.linkedin-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.linkedin-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.linkedin-card .linkedin-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.25rem;
}

.linkedin-card .linkedin-info p {
    color: var(--color-gray-600);
    font-size: 0.875rem;
}


/* TikTok Card - Enhanced Header */
.tiktok-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-gray-200);
}

.tiktok-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tiktok-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-gray-200);
}

.tiktok-info {
    flex: 1;
}

.tiktok-card .tiktok-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.25rem;
}

.tiktok-card .tiktok-info p {
    color: var(--color-gray-600);
    font-size: 0.875rem;
}

/* TikTok Follow Button - Black with White Text */
.tiktok-follow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--color-black);
    border: 1px solid var(--color-black);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: var(--color-white);
}

.tiktok-follow-btn:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}


/* Responsive Discord Community */
@media (max-width: 768px) {
    .discord-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    
    .feature-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .linkedin-header,
    .tiktok-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
}

@media (max-width: 480px) {
    .footer-logo-section {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        text-align: center;
    }
    
    .footer-logo-main {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .discord-logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    
    .linkedin-logo,
    .tiktok-logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
}