/* ===================================
   MIKHMON SERVICE PAGE STYLES
   Premium Design for VIAMIKRO Mikhmon
   =================================== */

/* Mikhmon Hero Section */
.mkh-hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #134e4a 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.mkh-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.1), transparent 70%);
    top: -200px;
    left: -200px;
    border-radius: 50%;
}

.mkh-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.mkh-hero-content {
    text-align: left;
}

.mkh-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Typography Refinements */
.mkh-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.mkh-hero-content p {
    margin-bottom: 3rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.mkh-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

/* Stats Banner */
.mkh-stats {
    display: flex;
    justify-content: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #f43f5e, #14b8a6);
    /* Pink to Teal */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animated Logo (WiFi Ticket) */
.mkh-logo-wrapper {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: floatTicket 6s ease-in-out infinite;
    cursor: pointer;
}

.mkh-glass-card {
    position: absolute;
    width: 250px;
    height: 350px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.2));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: 20px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        inset 0 0 30px rgba(255, 255, 255, 0.05);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(-10deg);
    transition: all 0.5s ease;
}

.mkh-main-logo {
    width: 80%;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.3));
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wifi-wave {
    position: absolute;
    border-radius: 50%;
    border: 3px solid rgba(244, 63, 94, 0.5);
    /* Pink Wave */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    z-index: 0;
}

.wave-1 {
    width: 300px;
    height: 300px;
    animation-delay: 0s;
}

.wave-2 {
    width: 300px;
    height: 300px;
    animation-delay: 1.5s;
}

/* HOVER EFFECTS */
.mkh-logo-wrapper:hover .mkh-glass-card {
    transform: rotate(0deg) scale(1.05);
    border-color: rgba(244, 63, 94, 0.5);
    /* Pink Glow */
    box-shadow: 0 0 60px rgba(244, 63, 94, 0.2);
}

.mkh-logo-wrapper:hover .mkh-main-logo {
    transform: scale(1.1);
}

.mkh-logo-wrapper:hover .wifi-wave {
    animation: emitWave 3s linear infinite;
}

/* Animations */
@keyframes floatTicket {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes emitWave {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.8;
        border-width: 3px;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
        border-width: 0px;
    }
}

/* Mikhmon Features Grid */
.mkh-features {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.mkh-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.mkh-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.3s ease;
}

.mkh-card:hover {
    transform: translateY(-5px);
    border-color: rgba(20, 184, 166, 0.3);
    box-shadow: 0 20px 40px rgba(20, 184, 166, 0.1);
}

.mkh-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.mkh-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.mkh-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mkh-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mkh-list li {
    color: #94A3B8;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

/* Gallery Section */
.mkh-gallery {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--bg-dark), #134e4a);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-img {
    width: 100%;
    display: block;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: white;
    font-weight: 600;
}

/* How it Works Section */
.mkh-how {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.mkh-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.mkh-step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
}

.mkh-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: white;
}

.mkh-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.mkh-step-arrow {
    font-size: 2rem;
    color: rgba(20, 184, 166, 0.5);
    flex-shrink: 0;
}

/* FAQ */
.mkh-faq {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--bg-dark), #134e4a);
}

/* Mikhmon CTA Section */
.mkh-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #134e4a, var(--bg-dark));
}

/* Responsive */
@media (max-width: 900px) {
    .mkh-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .mkh-hero-content {
        text-align: center;
    }

    .mkh-hero-cta {
        justify-content: center;
    }

    .mkh-stats {
        justify-content: center;
    }

    .mkh-logo-wrapper {
        width: 100%;
        max-width: 300px;
        height: 300px;
        margin: 0 auto;
    }

    .mkh-hero h1 {
        font-size: 2.5rem;
    }

    .mkh-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .mkh-steps {
        flex-direction: column;
    }

    .mkh-step-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 600px) {
    .mkh-hero {
        padding: 8rem 0 3rem;
    }

    .mkh-hero-content h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .service-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .mkh-card {
        padding: 1.5rem;
    }

    .mkh-card h3 {
        font-size: 1.25rem;
    }

    .mkh-card p {
        font-size: 0.9rem;
    }

    .mkh-icon {
        font-size: 2.5rem;
    }

    .mkh-step {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem !important;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    /* Hero image - hide on mobile */
    .mkh-hero-visual {
        display: none;
        /* Hidden on mobile to avoid layout issues */
    }
}