.online-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 25px;
    height: 25px;
    background: #00ff00;
    border: 3px solid #000;
    border-radius: 50%;
    z-index: 2;
    animation: pulse-status 2s ease-in-out infinite;
}

@keyframes pulse-status {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0,255,0,0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(0,255,0,0);
    }
}

.meta-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #888;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.meta-item:hover {
    color: #fff;
    transform: translateX(5px);
}

.meta-item i {
    color: #fff;
}

.stats-bar {
    display: flex;
    gap: 25px;
    padding: 20px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    margin: 20px 0;
}

.stat-box {
    text-align: center;
    flex: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-box:hover {
    transform: translateY(-5px) scale(1.05);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.stat-value i {
    color: #ffd700;
    font-size: 1.3rem;
}

.stat-label {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.badge {
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    border: 2px solid;
}

.badge:hover {
    transform: translateY(-2px) rotate(2deg);
    box-shadow: 0 4px 12px rgba(255,255,255,0.3);
}

.badge-pro {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    border-color: #ffd700;
}

.badge-verified {
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    color: #fff;
    border-color: #00d2ff;
}

.badge-trusted {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    color: #fff;
    border-color: #11998e;
}

.badge-top {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: #fff;
    border-color: #ff6b6b;
}

.action-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.action-btn {
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

.action-btn-primary {
    background: #fff;
    color: #000;
}

.action-btn-primary:hover {
    background: #000;
    color: #fff;
}

.video-section {
    margin-bottom: 40px;
}

.video-intro {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.video-intro:hover {
    border-color: #fff;
    box-shadow: 0 10px 30px rgba(255,255,255,0.2);
}

.video-intro iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

.video-icon {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.video-text {
    font-size: 1.2rem;
    color: #aaa;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.portfolio-item {
    position: relative;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-item:hover {
    border-color: #fff;
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.2);
}

.portfolio-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #555;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.1);
}

.portfolio-info {
    padding: 20px;
}

.portfolio-title {
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.portfolio-desc {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.portfolio-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.portfolio-tag {
    padding: 4px 12px;
    background: #333;
    border-radius: 10px;
    font-size: 0.75rem;
    color: #aaa;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay-btn {
    padding: 12px 30px;
    background: #fff;
    color: #000;
    border: 2px solid #fff;
    border-radius: 25px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-overlay-btn:hover {
    background: #000;
    color: #fff;
    transform: scale(1.1);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.tech-item {
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech-item:hover {
    border-color: #fff;
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 25px rgba(255,255,255,0.2);
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.tech-item:hover .tech-icon {
    transform: scale(1.2);
}

.tech-name {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.service-card {
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    border-color: #fff;
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.2);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(360deg);
}

.service-title {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.service-desc {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}

.service-btn {
    padding: 12px 30px;
    background: #fff;
    color: #000;
    border: 2px solid #fff;
    border-radius: 25px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: #000;
    color: #fff;
    transform: scale(1.05);
}

.process-timeline {
    position: relative;
    padding: 40px 0;
    margin-bottom: 40px;
}

.process-line {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 4px;
    background: #333;
    z-index: 0;
}

.process-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    animation: process-progress 3s ease-in-out infinite;
}

@keyframes process-progress {
    0%, 100% { width: 0%; }
    50% { width: 100%; }
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.process-step {
    text-align: center;
    flex: 1;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
}

.process-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #1a1a1a;
    border: 4px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.process-step:hover .process-icon-wrapper {
    border-color: #ffd700;
    box-shadow: 0 0 30px rgba(255,215,0,0.5);
    transform: rotate(360deg);
}

.process-icon {
    font-size: 2rem;
    color: #ffd700;
}

.process-title {
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.process-desc {
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.4;
}

.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,210,255,0.5);
    transition: all 0.3s ease;
    animation: chat-pulse 2s ease-in-out infinite;
    position: relative;
}

@keyframes chat-pulse {
    0%, 100% { box-shadow: 0 5px 20px rgba(0,210,255,0.5); }
    50% { box-shadow: 0 5px 30px rgba(0,210,255,0.8); }
}

.chat-button:hover {
    transform: scale(1.1);
}

.chat-button i {
    font-size: 1.8rem;
    color: #fff;
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 25px;
    height: 25px;
    background: #ff6b6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 900;
    border: 3px solid #000;
}

@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
    }

    .profile-info h1 {
        justify-content: center;
        font-size: 2rem;
    }

    .stats-bar {
        flex-wrap: wrap;
    }

    .stat-box {
        flex: 1 1 45%;
    }

    .meta-info {
        justify-content: center;
    }

    .action-buttons {
        justify-content: center;
    }

    .process-steps {
        flex-direction: column;
        gap: 30px;
    }

    .process-line {
        display: none;
    }

    .portfolio-grid,
    .tech-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
}