@charset "UTF-8";

/* Service Experimental Section - Uprgraded Design (GNB Contact style) */
.service-experimental {
    padding: 180px 40px;
    background: #050505;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.service-experimental .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.service-experimental .section-title {
    font-family: var(--font-en);
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: -0.03em;
}

.service-experimental .section-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.experimental-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 100px;
}

.exp-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 60px 40px;
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.exp-item:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--electric-blue);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.exp-label {
    font-family: var(--font-en);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.2em;
    color: var(--electric-blue);
    margin-bottom: 25px;
    display: block;
}

.exp-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.exp-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    word-break: keep-all;
}

.exp-item:hover .exp-text {
    color: rgba(255, 255, 255, 0.8);
}

.experimental-cta {
    margin-top: 100px;
}

.experimental-contact-special {
    background: linear-gradient(135deg, #0a1931 0%, #000 100%);
    padding: 100px;
    border-radius: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

.experimental-contact-special .glow-effect {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.2) 0%, transparent 70%);
    top: -300px; left: -100px;
    pointer-events: none;
}

.experimental-contact-special .contact-left h3 {
    font-family: var(--font-en);
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.experimental-contact-special .contact-left h3 span { color: var(--electric-blue); }

.experimental-contact-special .contact-left p {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.experimental-contact-special .contact-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 450px;
    flex-shrink: 0;
}

.experimental-contact-special .contact-action-card {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.03);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.4s;
    gap: 20px;
}

.experimental-contact-special .contact-action-card.highlight {
    background: rgba(0, 102, 255, 0.1);
    border-color: rgba(0, 102, 255, 0.3);
}

.experimental-contact-special .contact-action-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateX(15px);
    border-color: rgba(255,255,255,0.2);
}

.experimental-contact-special .contact-action-card.highlight:hover {
    background: var(--electric-blue);
}

.experimental-contact-special .action-icon {
    width: 60px; height: 60px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    display: flex; align-items: center; justify-content: center;
}

.experimental-contact-special .action-icon svg { width: 30px; height: 30px; color: #fff; }

.experimental-contact-special .action-text strong { display: block; font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 5px; }
.experimental-contact-special .action-text span { font-size: 14px; color: rgba(255,255,255,0.4); }

.experimental-contact-special .contact-action-card:hover .action-text span { color: rgba(255,255,255,0.8); }

.experimental-contact-special .action-arrow { font-size: 24px; color: #fff; opacity: 0.3; transition: 0.3s; margin-left: auto; }
.experimental-contact-special .contact-action-card:hover .action-arrow { opacity: 1; transform: translateX(5px); }

@media (max-width: 1199px) {
    .experimental-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
    .experimental-contact-special {
        flex-direction: column;
        padding: 60px 30px;
        text-align: center;
        gap: 40px;
    }

    .experimental-contact-special .contact-left h3 {
        font-size: 38px;
    }

    .experimental-contact-special .contact-right {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 767px) {
    .experimental-grid { grid-template-columns: 1fr; }
    .service-experimental { padding: 100px 20px; }
    .service-experimental .section-title { font-size: 36px; }
    .service-experimental .section-desc { font-size: 15px; }
    
    .experimental-contact-special { padding: 50px 20px; }
    .experimental-contact-special .contact-left h3 { font-size: 32px; }
    .experimental-contact-special .contact-left p { font-size: 16px; }
    
    .experimental-contact-special .contact-action-card {
        padding: 20px;
        gap: 15px;
    }

    .experimental-contact-special .action-text strong { font-size: 18px; }
    .experimental-contact-special .action-icon { width: 50px; height: 50px; }
}
