/* =========================================
   CONTACT STUDIO PRO - SMART FIXED STYLE
   ========================================= */

.contact-wrapper {
    background: #020617;
    min-height: 100vh;
    padding: 80px 0;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

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

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

.page-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight-text {
    color: #ff3366;
}

.info-desc {
    color: #94a3b8;
    font-size: 18px;
    line-height: 1.6;
}

/* Smart Links - Removed Ugly Blue */
.smart-link {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 18px;
    font-weight: 700;
    transition: 0.3s;
}

.smart-link:hover {
    color: #ff3366 !important;
}

.info-items {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-box {
    width: 45px;
    height: 45px;
    background: rgba(255, 51, 102, 0.1);
    color: #ff3366;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-text label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 2px;
}

/* Form Card */
.contact-form-card {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 24px;
}

.form-header h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #fff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.studio-input,
.studio-select {
    width: 100%;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px;
    color: #fff;
    border-radius: 10px;
    outline: none;
    transition: 0.3s;
}

/* NO RESIZE FIXED BOX */
.fixed-text {
    resize: none !important;
}

.studio-input:focus {
    border-color: #ff3366;
    background: #161e31;
}

.action-btn {
    width: 100%;
    background: #ff3366;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

.action-btn:hover {
    background: #e62e5c;
    transform: translateY(-2px);
}

/* Success Msg */
.success-msg {
    display: none;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    font-weight: 700;
    border: 1px solid rgba(16, 185, 129, 0.2);
    animation: slideUp 0.5s ease forwards;
}

.count-badge {
    font-size: 10px;
    color: #64748b;
    font-weight: 800;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}